-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simon Say Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<h1 class="mainHeading">Welcome To Simon Say Game</h1>
<div class="controlButtons">
<button class="startBtn">Start Game</button>
<button class="resetBtn hidden">Restart Game</button>
<button class="quitBtn hidden">Quit</button>
</div>
<div class="cardContainer">
<div class="card red" id="red" type="button"></div>
<div class="card green" id="green" type="button"></div>
<div class="card yellow" id="yellow" type="button"></div>
<div class="card pink" id="pink" type="button"></div>
<div class="card plum" id="plum" type="button"></div>
<div class="card aqua" id="aqua" type="button"></div>
<div class="centerCard"><h3 class="display">Click start button to start the Game</h3></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>