-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 883 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Raiyan's Car-Racing-Game</title>
</head>
<body>
<div class="game">
<div class="score"></div>
<div class="highScore"></div>
<div class="startScreen">
<p class="ClickToStart">Click here to start the game <br><br></p>
<p > INSTRUCTIONS: <br>
Use Arrow keys to move the car <br>
If you hit any car then game will end <br>
Game Developed By - <a href="https://www.linkedin.com/in/mushfiqueraiyan">Mushfique Raiyan</a></p>
</div>
<div class="gameArea"></div>
</div>
<script src="carGame.js"></script>
</body>
</html>