-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (25 loc) · 816 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
27
28
29
30
31
32
<!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="style.css">
<title>|| Simon Game ||</title>
</head>
<body>
<h1 class="heading">|| Simon Game ||</h1>
<br>
<h2 class="guide">Press any key to start.</h2>
<div class="btn-container">
<div class="line-one">
<div class="btn pink" type="button" id="pink"></div>
<div class="btn orange" type="button" id="orange"></div>
</div>
<div class="line-two">
<div class="btn blue" type="button" id="blue"></div>
<div class="btn green" type="button" id="green"></div>
</div>
</div>
<script src="sketch.js"></script>
</body>
</html>