-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (25 loc) · 888 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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="Basic CAR - Game"/>
<style>
.hide{
display: none;
}
</style>
<title>Car-game</title>
</head>
<body>
<div class="score" style="background-color:red">score</div>
<div class="gameArea">
<div class="startScreen" style ="background-color:green"> Start Screen </div>
<!-- gamescreen mai hide class lgyi hai pehle taki wo dikhe na phir script ka use krke classlistmethod ka use krke
startscreen mai hide class add kr denge and gamescreen se remove kr dengge -->
<div class="gameScreen hide" style ="background-color:blue"> Game Screen </div>
</div>
<script src="script.js"></script>
</body>
</html>