-
Notifications
You must be signed in to change notification settings - Fork 0
/
simon.html
48 lines (43 loc) · 1.65 KB
/
simon.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!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="simon.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=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div class="game-head">
<h1 id="game">Simon Says Game</h1>
<h2 id="head">Press Any Key To Start The Game</h2>
</div>
<div class="div-container">
<div class="one-line">
<div class="box red" type="button" id="red">1</div>
<div class="box green" type="button" id="green">2</div>
</div>
<div class="two-line">
<div class="box orange" type="button" id="orange">3</div>
<div class="box blue" type="button" id="blue">4</div>
</div>
</div>
<div id="score">
<h3 id="displayInput"></h3>
<div class="score-inner">
<h2 class="header"></h2>
</div>
</div>
<div class="main-icon-container">
<span class="icons-container">
<a href="https://github.com/isimarjitsingh"><img src="src/github.icon.webp" alt="github profile" class="img-icons"></a>
</span>
<span class="icons-container">
<a href="https://www.linkedin.com/in/simarjit-singh-875235313/"><img src="src/main-linkedin.png" alt="linkedin profile" class="img-icons"></a>
</span>
</div>
<script src="simon.js"></script>
</body>
</html>