-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (40 loc) · 1.08 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
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="style.css?1" />
</head>
<body>
<div class="main">
<div class="head">
<div class="top_head">
PAGE TITLE
</div>
<div class="bot_head">
<div class="bot_head_buttons">
<button id="start">START</button>
<button id="pause">PAUSE</button>
<button id="newGame">NEW GAME</button>
</div>
<div class="bot_head_points_block">
<span>Points</span>
<div class="bot_head_points_block_count">
<span class="bot_head_points_block_count_text">0</span>
</div>
</div>
<div class="bot_head_points_time_block">
<span>Time left</span>
<div class="bot_head_time_block_count">
<span class="bot_head_time_block_count_text">01:00</span>
</div>
</div>
</div>
<div class="game_body">
<!-- 1000px / 400px = 10 blocks (100/40 px) -->
<button class="game_blocks">TICK</button>
</div>
</div>
</div>
<script type="text/javascript" src="mainer.js"></script>
</body>
</html>