-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (35 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Simon Game</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="level-title">Press Any Key to Start</h1>
<button type="button" class="start btn btn-lg ">Start</button>
<div class="main-container">
<div class="main-row">
<div type="button" id="green" class="button green">
</div>
<div type="button" id="red" class="button red">
</div>
</div>
<div class="main-row">
<div type="button" id="yellow" class="button yellow">
</div>
<div type="button" id="blue" class="button blue">
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="game.js" charset="utf-8"></script>
</body>
<!-- <button type="button" class="restart btn btn-lg">Restart</button> -->
<footer class="footer">
<p>Made with ❤️ by Siddhesh-Tech</p>
</footer>
</html>