-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (78 loc) · 2.48 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
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<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>Typing Speed Test Game</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/main.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=Open+Sans:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="game">
<div class="name">Typing Speed Test Game</div>
<div class="container">
<div class="dif-lvl">
Chossing The Difficulty Levels
<form>
<div>
<input
class="messageCheckbox"
type="radio"
id="easy"
name="dif-lvl"
value="Easy"
/>
<label for="easy">Easy</label>
</div>
<div>
<input
class="messageCheckbox"
type="radio"
id="medium"
name="dif-lvl"
value="Medium"
checked
/>
<label for="medium">Medium</label>
</div>
<div>
<input
class="messageCheckbox"
type="radio"
id="hard"
name="dif-lvl"
value="Hard"
/>
<label for="hard">Hard</label>
</div>
</form>
</div>
<div class="message">
You Are Playing On
<span class="lvl"></span> Level & You Have
<span class="seconds"></span> Seconds To Type The Word
</div>
<div class="start">Start Playing</div>
<div class="the-word">Welcome</div>
<input type="text" class="input" />
<div class="upcoming-words">Words Will Show Here</div>
<div class="control">
<div class="time">Time Left: <span></span> Seconds</div>
<div class="score">
Score: <span class="got">0</span> From <span class="total"></span>
</div>
</div>
<div class="finish"></div>
<button class="repeat">Play Again</button>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>