-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (31 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Toggle Runner</title>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<script anonymous src="https://unpkg.com/[email protected]/dist/ldclient.min.js"></script>
<script src="/js/app.js" type="module" defer ></script>
</head>
<body>
<header>
<h1 id="heading">T-Rex Runner</h1>
</header>
<div class="interstitial-wrapper"></div>
<div class="debug_info"></div>
<div id="resources">
<img id="resources-1x" src="images/100-percent/100-sprite.png" />
<img id="resources-2x" src="images/200-percent/200-sprite.png" />
<div id="audio-resources">
<audio id="sound-press" src="sounds/button-press.mp3"></audio>
<audio id="sound-hit" src="sounds/hit.mp3"></audio>
<audio id="sound-reached" src="sounds/score-reached.mp3"></audio>
</div>
</div>
</body>
</html>