-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 855 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simon Game</title>
<link rel="icon" href="logo.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="main-container">
<h1>Simon Game</h1>
<h3>Press any key to start the game</h3>
<div class="button-container">
<div class="button" id="button-1"></div>
<div class="button" id="button-2"></div>
</div>
<div class="button-container">
<div class="button" id="button-3"></div>
<div class="button" id="button-4"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>