-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 2.17 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
<!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="style.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=Karla:wght@500;800&display=swap" rel="stylesheet">
<title>Definitely</title>
</head>
<body>
<header>
<a href="index.html">
<h1>Definitely</h1>
</a>
<div class="result hidden">
<h2>Well done!</h2>
<p>
You scored <span id="correct">0</span> out of 10
</p>
</div>
<div class="init">
<button id="load-game">Load new game</button>
<div class="word-length-container">
<label for="word-length">Word length</label>
<select name="word-length" id="word-length">
<option value="4">Short</option>
<option value="7" selected>Medium</option>
<option value="10">Long</option>
</select>
</div>
</div>
</header>
<div class="game-container hidden">
<button id="next-word" disabled>Next word</button>
<div class="progress-indicator">
<div class="progress-square"></div>
<div class="progress-square"></div>
<div class="progress-square"></div>
<div class="progress-square"></div>
<div class="progress-square"></div>
<div class="progress-square"></div>
<div class="progress-square"></div>
<div class="progress-square"></div>
<div class="progress-square"></div>
<div class="progress-square"></div>
</div>
<div id="definition">
</div>
<div id="choices"></div>
</div>
<div id="myModal" class="modal">
<!-- <span class="close">×</span> -->
<div class="modal-content">
<p>Some text in the Modal..</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>