-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="game.css">
<script src="libs/game.js" defer></script>
<script src="libs/main.js" defer></script>
<script data-main = "libs/main" src = "libs/require.js"></script>
<script src="libs/planet.js" defer></script>
<script src="libs/donut.js" defer></script>
<meta charset="UTF-8">
<title>Game</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&family=EB+Garamond:ital,wght@1,413&display=swap" rel="stylesheet">
</head>
<body>
<div class = "wrapperHighScore">
<h2>High Scores </h2>
<ol id="highScores" >
</ol>
<p id = "pause">arrows - move <br>p - pause <br><br> escape - planets <br> collect - donuts </p>
</div>
<div class = 'wrapper'>
<div id = "counter"> 0 </div>
<div id = "rocket"></div>
</div>
</body>
</html>