-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.04 KB
/
index.html
File metadata and controls
27 lines (27 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simon Says Game</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:wght@300;400;500;600;700&family=Road+Rage&family=Roboto+Serif&display=swap"
rel="stylesheet"
/>
</head>
<body>
<h1 class="head">Simon Says Game</h1>
<h2>Press Start to start the game</h2>
<div class="container">
<div class="btn yellow" id="yellow" type="button"></div>
<div class="btn red" id="red" type="button"></div>
<div class="btn purple" id="purple" type="button"></div>
<div class="btn blue" id="blue" type="button"></div>
</div>
<button class="start-btn">Start</button>
<script src="app.js"></script>
</body>
</html>