-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 1.37 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
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simon Game</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<!-- CSS Styles -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="title-container">
<h1 class="title">Press A Key To Start</h1>
</div>
<div class="btns-container">
<button
class="btn btn-green"
id="green"
title="Green"
aria-label="Green"
></button>
<button
class="btn btn-red"
id="red"
title="Red"
aria-label="Red"
></button>
<button
class="btn btn-yellow"
id="yellow"
title="Yellow"
aria-label="Yellow"
></button>
<button
class="btn btn-blue"
id="blue"
title="Blue"
aria-label="Blue"
></button>
</div>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<!-- js -->
<script src="game.js" charset="utf-8"></script>
</body>
</html>