-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 894 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<title>Simon</title>
</head>
<body>
<h1 id="level-title">Press A Key to Start</h1>
<div id="game-board">
<div class="row">
<div id="green" class="button"></div>
<div id="red" class="button"></div>
</div>
<div class="row">
<div id="yellow" class="button"></div>
<div id="blue" class="button"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<script src="./index.js" charset="utf-8"></script>
</body>
</html>