-
Notifications
You must be signed in to change notification settings - Fork 164
/
index.html
30 lines (30 loc) · 988 Bytes
/
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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CarRacer</title>
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="carGame">
<div class="score"></div>
<div class="startScreen">
<p>Press here to start <br>
Use Arrow keys to move <br>
If you hit another car you will lose.
</p>
<div>Select Level
<span class="level">
<button id="easy">Easy</button>
<button id="moderate">Moderate</button>
<button id="difficult">Difficult</button>
</span>
</div>
</div>
<div class="gameArea"></div>
</div>
<script src="gameHandler.js"></script>
</body>
</html>