-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (54 loc) · 1.62 KB
/
index.html
File metadata and controls
61 lines (54 loc) · 1.62 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<title>Heatstroke</title>
<style>
html, body {
margin: 0;
background-color: black;
height: 100%;
width: 100%;
overflow: hidden;
}
#canvas {
top: 0;
width: 100%;
height: 100%;
}
footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
padding-left: 2em;
padding-bottom: 2em;
text-align: left;
font-family: 'Montserrat', sans-serif;
color: white;
font-size: 12px;
}
footer a {
text-decoration: none;
color: white;
}
footer a:hover {
color: lightblue;
}
footer span {
font-size: 30px;
}
</style>
</head>
<body>
<footer>
<span>Heatstroke</span>
<br>
<a href = "http://JonLee.xyz" target = "blank">Jon Lee</a> and <a href = "https://github.com/rms13" target = "blank">Rishabh Shah</a> ·
<a href = "https://github.com/rms13/WebGL2-Volumetric-Renderer" target = "blank">Github Repo</a>
</footer>
<canvas id="canvas"></canvas>
<script src="build/bundle.js"></script>
</body>
</html>