blob: ce0739c50f9a492f50f9aade2798c611be134893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device.width, initial-scale=1">
<link rel="shortcut icon" href="favicon.png">
<title>bluerose</title>
<style>
body {
font-family: monospace;
background-color: #333;
color: white;
}
</style>
<script type="module" src="main.js"></script>
</head>
<body style="margin: 0; padding: 0; overflow: hidden">
<div id="root"></div>
<noscript>
<h1>You need Javascript enabled to use this site</h1>
</noscript>
</body>
</html>
|