-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (67 loc) · 1.72 KB
/
index.html
File metadata and controls
72 lines (67 loc) · 1.72 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simon Game</title>
<link rel="icon" href="logo3.png">
<style>
html{
background-image: linear-gradient(to right,#02AABD , #00CDAC);
}
h1{
text-align: center;
color: goldenrod;
text-shadow: 3px 3px black;
}
h2{
text-align: center;
color:white;
}
.container{
width: 450px;
height: 450px;
display: flex;
flex-wrap: wrap;
margin: 0 auto;
justify-content: space-between;
align-items: center;
}
.box{
width: 190px;
height: 190px;
border: 4px solid black;
border-radius: 20%;
}
.red{
background-color: #f46060;
}
.light-blue{
background-color: #5daed6;
}
.orange{
background-color: #ec883c;
}
.blue{
background-color: #1a7ae8;
}
.gameFlash{
background-color: #fff;
}
.userFlash{
background-color: green;
}
</style>
</head>
<body>
<h1>SIMON GAME</h1>
<h2>Press any key to start the game</h2>
<div class="container">
<div class="box red" type="button" id="red"></div>
<div class="box light-blue" type="button" id="light-blue"></div>
<div class="box orange" type="button" id="orange"></div>
<div class="box blue" type="button" id="blue"></div>
</div>
<script src="app.js"></script>
</body>
</html>