Create index.html

This commit is contained in:
Voxel 2025-04-13 20:40:54 -04:00 committed by GitHub
parent 8b63a675b1
commit 8c48e8aaca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

26
type/index.html Normal file
View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MilkNet | Typing Speed Test</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Typing speed test</h1>
<p>Go or something idk</p>
<div id="text-to-type" class="text-to-type">
<!-- Random text will be inserted here -->
</div>
<textarea id="user-input" placeholder="Start typing..."></textarea>
<div id="stats">
<p>Time: <span id="timer">0</span>s</p>
<p>Speed: <span id="speed">0</span> WPM</p>
<p>Accuracy: <span id="accuracy">100</span>%</p>
</div>
<button id="restart-btn">Restart Test</button>
</div>
<script src="script.js"></script>
</body>
</html>