-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
44 lines (35 loc) · 1.14 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>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
<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>Speed Typer Game</title>
</head>
<body>
<div class="settings" id="settings">
<form class="settings-form">
<div>
<label for="difficulty">Difficulty</label>
<select class="difficulty" id="difficulty">
<option value="easy">Easy</option>
<option value="medium">Medium</option>
<option value="hard">Hard</option>
</select>
</div>
</form>
</div>
<div class="container">
<h2>Speed Typer</h2>
<small>Type the following : </small>
<h1 class="word"></h1>
<input class="text" type="text" autocomplete="off" placeholder="type here..." />
<p class="time-container">Time Left : <span class="time">10s</span></p>
<p class="score-container">Score : <span class="score">0</span></p>
<div class="end-game"></div>
</div>
<script defer src="script.js"></script>
</body>
</html>