-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.43 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- CSS only -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<title>Typing Game</title>
</head>
<body>
<div class="text-center container-md p-3 my-5 bg-dark text-white">
<h1>Typing game!</h1>
<p>
Practice your typing skills with Random Sentences. Click **start** to
begin!<br />
Try Finish the Typing within 20 Seconds!!
</p>
<p id="quote"></p>
<!-- This will display our quote -->
<p id="message"></p>
<!-- This will display any status messages -->
<div>
<input type="text" aria-label="current word" id="typed-value" />
<!-- The textbox for typing -->
<button
type="button"
class="btn btn-success btn-primary btn-sm"
id="start"
>
Start
</button>
<!-- To start the game -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>