-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (31 loc) · 1.07 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
<!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">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- <div class="landing">
<h1 class = "main-heading">Simon</h1>
<button type="button" class="btn btn-info">Primary</button>
<button type="button" class="btn btn-info">Primary</button>
<button type="button" class="btn btn-info">Primary</button>
<footer>by Shiva</footer>
</div> -->
<h1 class="info">Press Any Key to Start</h1>
<div id = 'btns' class="container">
<div type="button" id="green" class="square green">
</div>
<div type="button" id="red" class="square red">
</div>
<div type="button" id="yellow" class="square yellow">
</div>
<div type="button" id="blue" class="square blue">
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="index.js" charset="utf-8"></script>
</body>
</html>