-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (56 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1, shrink-to-fit=no">
<title>Typing game</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="typing-image.png">
</head>
<body>
<div class="container">
<h1>Qwertzy</h1>
<div class="easy-hard">
<button class="easy" disabled>Easy</button>
<button class="hard" disabled>Hard</button>
</div>
<div class="timer-selector">
<button class="forty-five" disabled>45 sec</button>
<button class="sixty" disabled>60 sec</button>
</div>
<button id="startButton" disabled>START</button>
<div class="content">
<div class="score-count">
<p>Score</p>
<span class="score">0</span>
</div>
<div class="streak-count">
<p class="streak-word">Streak</p>
<span class="streak">0</span>
</div>
</div>
<div class="time-count">
<p class="time-label">Time left</p>
<span class="time">45</span>
</div>
<div class="word-display">
<p class="words">Word Display</p>
</div>
<div class="user-input">
<input type="text" id="user__input" name="word" disabaled>
</div>
<div class="correct-incorrect">
<div id="correct" class="fadeout">Correct</div>
<div id="incorrect" class="fadeout">Incorrect</div>
</div>
</div>
<audio id="incorrect-sound">
<source src="incorrect-sound-effect.mp3"/>
</audio>
<audio id="correct-sound">
<source src="correct-sound-effect.mp3"/>
</audio>
<script src="main.js"></script>
</body>
</html>