-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (96 loc) · 3.38 KB
/
index.html
File metadata and controls
110 lines (96 loc) · 3.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Typing Speed Test | Improve Your Typing</title>
<meta
name="description"
content="Test and improve your typing speed with a modern typing speed test. Real-time WPM, clean UI, and smooth experience."
/>
<meta
name="keywords"
content="typing test, wpm test, typing speed, keyboard test, typing practice"
/>
<meta name="author" content="Nojaid Abdullah Issa" />
<link rel="icon" type="image/png" href="assets/images/Keyboard.png" />
<meta property="og:title" content="Typing Speed Test" />
<meta
property="og:description"
content="Challenge yourself and improve your typing speed with this modern typing speed test."
/>
<meta
property="og:image"
content="https://nojaid-ad.github.io/TypingSpeedTest/assets/images/preview.png"
/>
<meta
property="og:url"
content="https://nojaid-ad.github.io/TypingSpeedTest/"
/>
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Typing Speed Test" />
<meta
name="twitter:description"
content="A clean and modern typing speed test with live stats."
/>
<meta
name="twitter:image"
content="https://nojaid-ad.github.io/TypingSpeedTest/assets/images/preview.png"
/>
<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=Inter:wght@400;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<h1 class="main-title">Typing Speed Test</h1>
<div class="container">
<p class="subtitle">Type as fast as you can in 60 seconds</p>
<div id="result" class="hidden">
<h2>Time's up!</h2>
<p>Score: <strong id="final-score"></strong></p>
<p>WPM: <strong id="final-wpm"></strong></p>
<button id="restart">Restart</button>
</div>
<div id="words" class="words-box"></div>
<input
type="text"
id="word-input"
placeholder="start typing..."
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
/>
<div class="stats">
<div>Time: <span id="time">60</span>s</div>
<div>Score: <span id="score">0</span></div>
</div>
</div>
<div class="spacer"></div>
<footer>
<p>Developed by <span class="custom-name">Nojaid Abdullah Issa</span></p>
<p>© 2025 All rights reserved.</p>
<div class="social">
<a href="https://github.com/Nojaid-Ad" target="_blank"
><i class="fab fa-github"></i
></a>
<a href="mailto:nojaidnojaid@gmail.com" target="_blank"
><i class="fas fa-envelope"></i
></a>
<a href="https://t.me/Nojaid" target="_blank"
><i class="fab fa-telegram"></i
></a>
</div>
</footer>
<script type="module" src="js/main.js"></script>
</body>
</html>