-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (42 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<title></title>
</head>
<body>
<h1></h1>
<div class="game-guess">
<div class="guess-area">
<div class="inputs"></div>
<div class="control">
<button class="check">Check Word</button>
<button class="hint"><span></span> Hints</button>
<button class="again">Again</button>
</div>
<div class="message"></div>
</div>
<div class="key-colors">
<h2>Key Colors</h2>
<div class="key-colors">
<div class="key-color">
<div class="key yes-in-place"></div>
<div class="key-text">Letter is right and in the place</div>
</div>
<div class="key-color">
<div class="key not-in-place"></div>
<div class="key-text">Letter is right but not in the place</div>
</div>
<div class="key-color">
<div class="key no"></div>
<div class="key-text">Letter is wrong</div>
</div>
</div>
</div>
</div>
<footer></footer>
<script src="main.js" ></script>
</body>
</html>