-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (43 loc) · 1.91 KB
/
index.html
File metadata and controls
53 lines (43 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="shortcut icon" href="res/Doge.ico" type="image/x-icon">
<title>Doge Typing Test</title>
</head>
<body>
<div class="container">
<h1 id="title"><img src="res/Doge.png" id="doge-icon" alt="doge sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW">Doge typing test <img src="res//Doge.png" id="doge-icon" alt="doge sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW"></h1>
<div id="finish">
<h2>
FINISH! 🏁 <img src="res/Doge.png" id="doge-icon-sm" alt="doge icon">
<br>
Your stats:
</h2>
<p id="timeDisplay">Time:</p>
<p id="wpmDisplay">Words Per Minute:</p>
<p id="mistakesDisplay">Mistakes</p>
</div>
<div class="game-container">
<div id="game">
<div id="block"></div>
<div id="text-display" onselectstart='return false;' ></div>
<textarea id="text-input" spellcheck="false" disabled class="centerTextArea">Click Start button to begin the test</textarea>
<div class="info">
<p id="time" >TIME: 00:00</p>
<p id="wpm" >WPM: 0</p>
<p id="mistakes" >MISTAKES: 0</p>
<button id="start" class="btn btn-light" >Start</button>
</div>
</div>
</div>
</div>
<footer>
laitdsgn © 2024
</footer>
<script src="script.js"></script>
</body>
</html>