-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (50 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Javascript version of the classic Brick Game Car Racing" />
<meta name="author" content="Jean Vidal Nunes" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="canonical" href="https://github.com/JVidalN/brick-game-car-racing" />
<link rel="stylesheet" href="./assets/css/styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Odibee+Sans&display=swap"
rel="stylesheet"
/>
<title>Brick Game Car Racing</title>
</head>
<body>
<div class="gameBody">
<div class="gameScreen">
<canvas id="brickGame" width="10" height="20"></canvas>
<div class="gameStatus noselect">
<div class="score">
SCORE <br />
<small></small>
</div>
<div class="hiScore">
HI-SCORE <br />
<small>2100</small>
</div>
<br />
<div class="lifeStatus"></div>
<br />
<div class="goal">
GOAL <br />
<small>2/25</small>
</div>
<div class="level">
LEVEL <br />
<small>5</small>
</div>
<div class="speed">
SPEED <br />
<small>2</small>
</div>
</div>
</div>
</div>
<script type="module" src="./assets/js/main.js"></script>
</body>
</html>