-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.36 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Windows Terminal Typing Test</title>
<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=Consolas:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="terminal">
<div class="terminal-header">
<div class="terminal-buttons">
<span class="terminal-button close"></span>
<span class="terminal-button minimize"></span>
<span class="terminal-button maximize"></span>
</div>
<div class="terminal-title">Windows Terminal</div>
</div>
<div class="terminal-content" id="terminal-content">
<div class="welcome-message">
Welcome to Windows Terminal Typing Test v1.0.0
Type 'help' to see available commands
</div>
<input id="mobile-input" style="opacity:0;position:absolute;left:-9999px;" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">
</div>
</div>
<script type="module" src="main.js"></script>
</body>
</html>