-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Simon</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css?family=Press+Start+2P"
rel="stylesheet"
/>
</head>
<body>
<h1 id="level-title">Press Start Button to Start</h1>
<button class="startButton">Start</button>
<div class="container">
<div lass="row">
<div type="button" id="colour1" class="btn colour1"></div>
<div type="button" id="colour2" class="btn colour2"></div>
</div>
<div class="row">
<div type="button" id="colour3" class="btn colour3"></div>
<div type="button" id="colour4" class="btn colour4"></div>
</div>
</div>
<footer>Made with ❤️ by Aniket.</footer>
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"
></script>
<script src="index.js"></script>
</body>
</html>