-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.19 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
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Simon</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="https://img.icons8.com/color/344/pokedex.png">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" defer></script>
<script type="text/javascript" src="script.js" defer></script>
</head>
<body>
<center>
<h1 class="game-title">Simon</h1>
<h3 class="display">Press start button to start the game!</h3>
<h5 class="score">Score: 0</h5>
<div class="btn-container">
<button class="btn red">red</button>
<button class="btn green">green</button>
<br>
<button class="btn yellow">yellow</button>
<button class="btn blue">blue</button>
</div>
<button onclick="startGame();" class="s-btn">Start Game</button>
</center>
<div class="footer">
<a href="https://github.com/subhranshuchoudhury/simon-game/" title="Source code for this project">GitHub</a>
<a href="https://youtu.be/1Yqj76Q4jJ4">How to play?</a><br>
<h5 class="thanks">@SubhranshuChoudhury</h5>
</div>
</body>
</html>