-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (38 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/style.css" />
<title>Simon</title>
<script defer src="./assets/app.js"></script>
<style>
@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Protest+Strike&family=Roboto+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Protest+Strike&display=swap");
</style>
</head>
<body>
<audio id="green-sound" src="./assets/sounds/green.mp3"></audio>
<audio id="red-sound" src="./assets/sounds/red.mp3"></audio>
<audio id="yellow-sound" src="./assets/sounds/yellow.mp3"></audio>
<audio id="blue-sound" src="./assets/sounds/blue.mp3"></audio>
<div class="board-container">
<div class="light-buttons">
<div id="green"></div>
<div id="red"></div>
<div id="yellow"></div>
<div id="blue"></div>
</div>
<div class="center-console">
<h3>Simon</h3>
<div id="display">
<h2 id="counter"></h2>
<h2 id="message"></h2>
</div>
<br />
<button class="start">Start</button>
</div>
</div>
</body>
</html>