-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (67 loc) · 2.94 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
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Type It</title>
<link rel="stylesheet" href="./assets/stylesheets/style.css">
<script defer src="./assets/scripts/main.js"></script>
</head>
<body>
<main>
<section class="header">
<nav class="container">
<ul class="nav_links">
<li class="logo"><a href="index.html">TypeIt</a></li><!--
--><li class="current_user">
<span class="user_icon">👤</span>
<spna class="user"></spna>
</li>
</ul>
</nav>
<!-- <h1 class="heading"><img src="./assets/media/logo.jpg" alt="Logo" width="300px"></h1> -->
<div class="container">
<div class="timer_wrapper">
<h3 class="timer"></h3>
</div>
<div class="banner_wrapper">
<img src="./assets/media/typing.png" alt="Typing-Banner" class="banner">
<div class="input_sec">
<input type="text" class="username" placeholder="Username">
<ul class="instuction">
<li> Press " Enter " after typing username</li>
<li> Press " Space " to start the game countdown.</li>
<li>Game Time Limit is 1 mintue</li>
</ul>
</div>
</div>
<!-- <input type="number" class="input" placeholder="Enter String Length"> -->
<p class="screen">
</p>
<!-- <img src="./assets/media/keyboard.webp" alt="Keyboard Image" class="keyboard_image"> -->
<div class="score_wrapper">
<!-- <p class="label">Your Score: 25</p>
<p><span class="label">Accuracy: </span>98%</p>
<p><span class="label">Time Taken:</span></p> -->
</div>
<table class="history_tbl">
<thead>
<tr>
<th>Username</th>
<th>Your Score</th>
<th>Total Score</th>
<th>Words Per Mintue</th>
<th>Accuracy</th>
<th>Time Taken</th>
<th>Date</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</section>
</main>
</body>
</html>