-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
125 lines (118 loc) · 4.58 KB
/
index.htm
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="game">
<div class="wrapper">
<div class="content-box">
<li class="time">
<span><b>60</b>s</span>
<p class="start-bord-text"></p>
<input type="text" name="" class="input-field">
</li>
<div class="typing-text">
<p></p>
</div>
</div>
</div>
<div class="ground">
<div class="tree">
<ul class="result-details">
<li class="wpm" style="list-style: none;">
<p>WPM:</p>
<span>0</span>
</li>
<li class="coin" style="list-style: none;">
<img src="images/coin.png" alt="" class="coin_image">
<span>0</span>
</li>
</ul>
</div>
<div class="play">
<div class="start-bord"></div>
<div class="players">
<div class="car">
<div class="wheel wheel1">
<img src="images/car_wheel_left.png" alt="">
</div>
<div class="wheel wheel2">
<img src="images/car_wheel_right.png" alt="">
</div>
</div>
<!-- Other Cars -->
<div class="car otherCar1">
<div class="wheel1 otherCar_Wheel1">
<img src="images/car_wheel_left.png" alt="">
</div>
<div class="wheel2 otherCar_Wheel2">
<img src="images/car_wheel_right.png" alt="">
</div>
</div>
<div class="car otherCar2">
<div class="wheel1 otherCar_Wheel1">
<img src="images/car_wheel_left.png" alt="">
</div>
<div class="wheel2 otherCar_Wheel2">
<img src="images/car_wheel_right.png" alt="">
</div>
</div>
<div class="car otherCar3">
<div class="wheel1 otherCar_Wheel1">
<img src="images/car_wheel_left.png" alt="">
</div>
<div class="wheel2 otherCar_Wheel2">
<img src="images/car_wheel_right.png" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="instruction">
<div class="rules">
<div class="instructions"></div>
<div style="color:red;">!Type Manually</div>
<div style="color:red;">!Do Not Try to use Copy&Paste OR keyboard suggestions word Otherwise your Game will
stuck</div>
<div> For Moving Car Up & Down You can use arrow keys </div>
<div>For Good Experience Use External Keyboard if you are a mobile user</div>
<button class="next-btn">Play</button>
</div>
</div>
<div class="result-box">
<div class="result">
<ul>
<div class="Your-Result">Result</div>
<li class="result-wpm">
<p>WPM:</p>
<span>0</span>
</li>
<li class="result-TimeTaken">
<p>Time:</p>
<span>0</span>
</li>
<li class="result-Coin">
<p>Coin's:</p>
<span>0</span>
</li>
<li class="result-CorrectWord">
<p>Correctword:</p>
<span>0</span>
</li>
<li class="result-Correct">
<p>CorrectLetters:</p>
<span>0</span>
</li>
<button class="Replay-btn">Replay</button>
</ul>
</div>
</div>
<script src="paragraph.js"></script>
<script src="script.js"></script>
</body>
</html>