-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 953 Bytes
/
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
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guess the Color</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#options-container {
display: grid;
grid-template-columns: repeat(3, 0fr);
}
#options-container > div{
height: 75px;
width: 75px;
margin: 5px;
border-radius: 10px;
cursor: pointer;
}
#options-container > div:hover {
scale: 1.2;
transition: 0.4s all;
}
</style>
</head>
<body>
<div>
<h1 id="color-code"></h1>
</div>
<div>
<h4>Score: <span id="score"></span></h4>
</div>
<div id="options-container"></div>
<script src="script.js"></script>
</body>
</html>