forked from MercuryWorkshop/halcyon-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclouds.html
49 lines (47 loc) · 1.11 KB
/
clouds.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Clouds Test Page</title>
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css">
<link rel="stylesheet" href="/static/css/style.css">
<link rel="stylesheet" href="/static/css/clouds.css">
<script>
window.onload = () => {
let script = document.createElement("script");
script.src = "/static/js/clouds.js";
script.onload = () => {generate()};
document.head.append(script);
}
</script>
<style>
#container {
position: absolute;
width: 100%;
}
#content {
display: flex;
flex-direction: column;
}
#spacer {
height: 200vh;
}
</style>
</head>
<body>
<div id="container">
<div id="cloud_viewport">
<div id="cloud_world"></div>
</div>
<div id="content">
<div id="spacer">
</div>
<div>
<h1>title</h1>
<p>body here</p>
</div>
</div>
</div>
</body>
</html>