-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (58 loc) · 2.08 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="stylesheet" href="index.css" />
<title>Evasive Maneuvers</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=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<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=Pushster&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Moo+Lah+Lah&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section id="loading-screen">
<div class="loader">
<div class="loader-inner"></div>
</div>
</section>
<main class="container">
<canvas id="canvas"></canvas>
<div class="info-section">
<div class="instructions">
<h1 class="press-title">Instructions 🚗</h1>
<p>Use <button class="btn">left arrow</button> to move LEFT</p>
<p>Use <button class="btn">right arrow</button> to move RIGHT</p>
<p>
Use <button class="btn">up arrow</button> or
<button class="btn">down arrow</button> to stay CENTER
</p>
</div>
<button class="press-title source">
<a
target="_blank"
href="https://github.com/JamarTG/feature-rich-evasive_maneuvers_car_game"
>View Source Code on Github</a
>
</button>
</div>
</main>
<script src="./main.js"></script>
</body>
</html>