-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (45 loc) · 2.36 KB
/
Copy pathindex.html
File metadata and controls
57 lines (45 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Meta Tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Keyboard Tester - Test Your Keyboard Keys Online</title>
<meta name="description" content="Quickly test your keyboard keys online. Check for stuck, unresponsive, or ghosting keys using our free and simple keyboard tester." />
<meta name="keywords" content="keyboard tester, key test, test keyboard online, stuck key checker, online keyboard checker, ghosting keys" />
<meta name="author" content="NextCoreAI" />
<meta name="robots" content="index, follow" />
<meta name="language" content="en" />
<!-- Canonical URL -->
<link rel="canonical" href="https://yourdomain.com/" />
<!-- Open Graph / Facebook -->
<meta property="og:title" content="Keyboard Tester - Free Online Key Checker" />
<meta property="og:description" content="Use our online tool to test every key on your keyboard. Instantly detect stuck or non-working keys." />
<meta property="og:image" content="https://yourdomain.com/images/keyboard-tester-og.jpg" />
<meta property="og:url" content="https://yourdomain.com/" />
<meta property="og:type" content="website" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Keyboard Tester - Free Online Tool to Test Your Keys" />
<meta name="twitter:description" content="Check if your keyboard keys are working properly with our easy online keyboard tester." />
<meta name="twitter:image" content="https://yourdomain.com/images/keyboard-tester-twitter.jpg" />
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css" />
<!-- Optional: Preload/Preconnect Fonts or APIs -->
<!-- Example: <link rel="preconnect" href="https://fonts.googleapis.com"> -->
</head>
<body>
<div class="tester-container">
<h1>Keyboard Tester</h1>
<div id="key-info">
<p class="secondHeading">Press any key to see the details here:</p>
<p class="key-display" id="key">Key: <span>-</span></p>
<p class="key-display" id="key-code">Key Code: <span>-</span></p>
</div>
<div id="typed-keys"></div>
</div>
<script src="script.js"></script>
</body>
</html>