mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 21:53:40 -05:00
27 lines
953 B
HTML
27 lines
953 B
HTML
<!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 id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
|
<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</button>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|