-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (30 loc) · 974 Bytes
/
Copy pathindex.html
File metadata and controls
37 lines (30 loc) · 974 Bytes
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
<html>
<head>
<title>MDSV</title>
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<link rel="stylesheet" href="./css/tachyons.css" />
<link rel="stylesheet" href="./css/style.css" />
<script src="./js/libs/p5.js"></script>
<script src="./js/libs/moment.js"></script>
<script src="./js/colors.js"></script>
<script src="./js/poster.config.js"></script>
</head>
<body>
<div id="canvas"></div>
<div id="overlay">
<div class="pa4 absolute top-0 left-0 dn db-ns">
<div class="f4" id="config-date"></div>
</div>
<div class="pa4 absolute top-0 right-0">
<div class="f4" id="config-title"></div>
</div>
<div class="pa4 absolute bottom-0 left-0">
<div class="f4" id="config-department"></div>
</div>
<div class="pa4 absolute bottom-0 right-0 w-50 tr dn db-ns">
<div class="f4" id="config-school"></div>
</div>
</div>
<script type="module" src="./js/index.js"></script>
</body>
</html>