-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 1.29 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 1.29 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
<!DOCTYPE html>
<html lang="ru-BY">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Speed Typing Game In JavaScript</title>
<link rel="stylesheet" href="css/style.css">
<script defer src="javascript/app.js"></script>
</head>
<body>
<main>
<div id="title">Speed Typing Game In JavaScript</div>
<br>
<br>
<button id="start">Старт</button>
<br>
<div style="width: 100%; display: flex; justify-content: space-around;">
<div style="display: flex; flex-direction: column; align-items: center;">
<p style="margin-top: 0;">Score</p>
<span id="score">0</span>
</div>
<div style="display: flex; flex-direction: column; align-items: center;">
<p style="margin-top: 0;">Time left</p>
<span id="timer">0</span>
</div>
</div>
<br>
<br>
<div id="display"></div>
<br>
<form id="form">
<fieldset class="form-group">
<textarea id="input" type="text" name="input"></textarea>
</fieldset>
</form>
</main>
</body>
</html>