-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="./css/style.css" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crimson's Simon Says Game</title>
</head>
<body>
<main>
<section class="simon-start">
<div class="container">
<h1>Crimson's Simon Says Game</h1>
</div>
</section>
<section class="simon-game">
<div class="container">
<div class="simon-buttons">
<div class="simon-buttons--rows">
<div class="simon-buttons--row">
<button disabled="true" class="red"></button>
<button disabled="true" class="blue"></button>
</div>
<div class="simon-buttons--row">
<button disabled="true" class="green"></button>
<button disabled="true" class="yellow"></button>
</div>
</div>
<button class="game-start">Start Game</button>
<div class="level" aria-hidden="true"><span>1</span></div>
</div>
</div>
</section>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="./js/main.js"></script>
</body>
</html>