-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.09 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.09 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
28
29
30
31
32
33
34
35
<!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"
/>
<link rel="icon" type="image/x-icon" href="/SimonGame/images/favicon.ico">
</head>
<body>
<h1 id="level-title">Press=> <a id="s">S</a> Key to Start</h1>
<div class="container">
<div class="row">
<div type="button" id="0" class="btn green"></div>
<div type="button" id="1" class="btn red"></div>
</div>
<div class="row">
<div type="button" id="2" class="btn yellow"></div>
<div type="button" id="3" class="btn blue"></div>
</div>
</div>
<a href="https://github.com/cosmoverse2000"
><h3 class="link">www.cosmoverse2000.com</h3></a
>
<h6><i class="fa fa-copyright" aria-hidden="true"></i>copyright@2022</h6>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>