-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="/images/gaming-pad.png" type="image/x-icon">
<title>Simon Game</title>
<!-- css -->
<link rel="stylesheet" href="/CSS/index.css">
<!-- fonts -->
<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=Cabin+Sketch:wght@700&display=swap" rel="stylesheet">
<body>
<div class="heading">
<h1 id="top-heading">Simon</h1>
<h1 id="below-heading">Simon</h1>
</div>
<div class="rules">
<h1>.. How to Play ..</h1>
<hr>
<h2>Follow the pattern of lights and sounds</h2>
<h2>for as long as you can</h2>
</div>
<br><br>
<a href="/game.html"><button class="btn">Play</button></a>
</body>
</html>