-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 986 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
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typing Game</title>
<link href="style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
</head>
<body class="body">
<div class="header">
<h1 class="title">Typing Game</h1>
<div class="word-timer">
<h4 id="word">Words will appear here</h4>
<h4 id="timer"></h4>
</div>
</div>
<div class="input">
<input oninput="checkStart(event)" type="text" class="form-control" id="inputlg" placeholder="Type "start" to play">
</div>
<div id="high-score">
<h4>High score: 0</h4>
</div>
<script src="script.js"></script>
</body>
</html>