-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (68 loc) · 2.06 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
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
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google fonts -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Guess Color Game</title>
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/variables.css" />
</head>
<body>
<header>
<nav>
<h1 id="game-title">
<a href="./index.html"> Guess Color Game </a>
</h1>
<div id="select-button">
<button class="button" id="select">Select Difficulty</button>
</div>
<div id="menu">
<div id="close-menu">
<button id="close-button">X</button>
</div>
<ul>
<li>
<a class="difficulty-selection" id="0" href="#">Easy</a>
</li>
<li>
<a class="difficulty-selection active" id="1" href="#">Medium</a>
</li>
<li>
<a class="difficulty-selection" id="2" href="#">Hard</a>
</li>
</ul>
</div>
</nav>
</header>
<div id="container">
<div id="game">
<div id="game-display">
<p></p>
</div>
<div id="game-points">
<p>Points: <span id="points">0</span></p>
</div>
<div id="game-colors">
<div class="color-container" id="idColor1"></div>
<div class="color-container" id="idColor2"></div>
<div class="color-container" id="idColor3"></div>
<div class="color-container" id="idColor4"></div>
</div>
</div>
</div>
<footer>
<p>
Made with ♥ by
<a href="https://github.com/matheus-lincon">Matheus Lincon</a>
</p>
</footer>
<!-- javascript -->
<script src="./js/main.js"></script>
</body>
</html>