-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 787 Bytes
/
index.html
File metadata and controls
25 lines (23 loc) · 787 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Type game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Typing game!</h1>
<p>Train your typing skills with a quote from Sherlock Holmes. Click **start** to begin!</p>
<p id="quote"></p> <!--Here the quote will be displayed-->
<div>
<input type="text" aria-label="current word" id="typed-value"> <!--textbox for typing-->
<button type="button" id="start" class="btnStart">Start</button>
</div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<p id="message"></p><!--Here the message will be displayed-->
</div>
</div>
<script src="script.js"></script>
</body>
</html>