mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-16 07:33:42 -05:00
Create index.html
This commit is contained in:
parent
8b63a675b1
commit
8c48e8aaca
1 changed files with 26 additions and 0 deletions
26
type/index.html
Normal file
26
type/index.html
Normal 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>
|
Loading…
Add table
Reference in a new issue