-
Notifications
You must be signed in to change notification settings - Fork 0
/
raceGame.html
27 lines (23 loc) · 935 Bytes
/
raceGame.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
<html lang="en-US">
<head>
<title>
Race Car Game
</title>
<link rel="stylesheet" href="./styles.css">
<meta charset="utf-8">
<script src="./jsRace.js" defer></script>
</head>
<body>
<header>Race Car Game</header>
<h2 id="score">Score: 0</h2>
<div id="wrapper">
<canvas id="gameCanvas">
Sorry your browser doesn't support Canvases.Please update your browser.
</canvas>
<canvas id="canv2"></canvas>
<img title="clouds" id="clouds"src="./assets/pngwing.com.png">
<img title="obstacle1" id="obstacle1" src="./assets/lovepik-puddle-png-image_400994140_wh860-removebg-preview.png">
<img title="car" id="car" src="./assets/pngtree-car-back-view-cute-illustration-png-image_6482493.png">
</div>
</body>
</html>