-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 871 Bytes
/
index.html
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
<!-- inside index.html -->
<html>
<head>
<title>Typing game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="body">
<div class="main-block">
<h1 class="Header">Typing game!</h1>
<p>
Practice your typing skills with a quote from Sherlock Holmes. Click
<strong>START</strong>
to begin!
</p>
<p id="quote" class="quote"></p>
<!-- This will display our quote -->
<p id="message"></p>
<!-- This will display any status messages -->
<div class="input-start">
<input type="text" aria-label="current word" id="typed-value" />
<!-- The textbox for typing -->
<button type="button" id="start" class="start-button">Start</button>
<!-- To start the game -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>