-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 948 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
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="styles.css">
<title>JS Game</title>
</head>
<body>
<div class="app">
<div class="app__header">
<h1 id="time-header">Время игры: <span id="time">5.0</span></h1>
<h1 id="result-header" class="hide">Ваш результат: <span id="result"></span></h1>
</div>
<div class="app__content">
<button class="btn" id="start">Начать</button>
<div class="game" id="game"></div>
</div>
<div class="app__footer">
<div class="input">
<label for="game-time">Время игры, (сек)</label>
<input type="number" id="game-time" min="5" step="1" value="5">
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>