-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.58 KB
/
index.html
File metadata and controls
35 lines (33 loc) · 1.58 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simon Says</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css" integrity="sha512-DxV+EoADOkOygM4IR9yXP8Sb2qwgidEmeqAEmDKIOfPRQZOWbXCzLC6vjbZyy0vPisbH2SyW27+ddLVCN+OMzQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<h1 class="head">Simon Says
<div class="information"><i class="fa-solid fa-circle-info"></i></div>
<div class="info-text">
This is a Simon Say Game <br> This game is all about your memorizing power. at each level you will be flash one of the colors of the 4 available colors. For passing the level you need to click the colors in sequence from the first level along with the latest color flashed.
</div>
</h1>
<div class="high">High Score: 0</div>
<div class="levels" >Click anywhere to start</div>
<div class="color-boxes">
<div class="red boxes"></div>
<div class="teal boxes"></div>
<div class="orange boxes"></div>
<div class="blue boxes"></div>
</div>
<button class="reset">Start / Restart</button>
</div>
<footer>
<a href="https://www.linkedin.com/in/krishna-chauhan-1672b8345/" target="_blank">Click to connect on Linkedin </a>
</footer>
<script src="app.js"></script>
</body>
</html>