-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
45 lines (33 loc) · 1.35 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>INP Workshop - Vanilla JS</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<link rel="stylesheet" href="./workshop/reset.css" />
<link rel="stylesheet" href="./workshop/styles.css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@1,800&display=swap" rel="stylesheet">
</head>
<body>
<main>
<score-keeper></score-keeper>
<div class="scores">
<inp-score></inp-score>
<interaction-score></interaction-score>
<fps-meter></fps-meter>
<my-timer></my-timer>
</div>
<all-interactions></all-interactions>
<demo-viewer></demo-viewer>
</main>
<script type="module" src="./workshop/components/score-keeper.js"></script>
<script type="module" src="./workshop/components/inp-score.js"></script>
<script type="module" src="./workshop/components/interaction-score.js"></script>
<script type="module" src="./workshop/components/my-timer.js"></script>
<script type="module" src="./workshop/components/fps-meter.js"></script>
<script type="module" src="./workshop/logAllInteractions.js"></script>
<script type="module" src="./index.js"></script>
</body>
</html>