-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (40 loc) · 1.45 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
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Simon</title>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<h1 class="level-title" id="start-title">Press "SIMON" to Start</h1>
<h1 class="level-title invisible" id="current-level">Level 1</h1>
<h1 class="level-title game-over-title invisible">GAME OVER!</h1>
<h2 class="game-over-title invisible">Press "SIMON" to Play Again</h2>
<div class="container-sm">
<div class="row">
<div type="button" id="green" class="bttn green">
</div>
<div type="button" id="red" class="bttn red">
</div>
</div>
<div class="row">
<div type="button" id="yellow" class="bttn yellow">
</div>
<div type="button" id="blue" class="bttn blue">
</div>
<div type="button" id="inner-circle">SIMON</div>
</div>
</div>
<!-- jQuery from Google Developers -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<!-- External JS Scripts -->
<script src="script/game.js"></script>
</body>
<footer>
<p id="footer">© Nick Boswell</p>
</footer>
</html>