-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
57 lines (51 loc) · 1.76 KB
/
game.html
File metadata and controls
57 lines (51 loc) · 1.76 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="game.css">
<title>Game</title>
</head>
<body>
<div class="board">
<div class="history hidden">
<h3 class="history-title">Games history</h3>
<div class="history-score">
<div class="wins-loses">
<p class="history-win history-text"></p>
<p class="history-lose history-text"></p>
</div>
<div class="score-lives">
<p class="top-score history-text"></p>
<p class="top-lives history-text"></p>
</div>
</div>
<button class="clear-history-button">Clear history</button>
</div>
<div class="container">
<div class="game-info-top">
<div class="score">Lives: <span class="live-points">6</span></div>
<button class="new-game-button">New Game</button>
</div>
<div class="game-info-bottom">
<div class="score">Score: <span class="score-points">0</span></div>
<div class="score">Remaining matches: <span class="match-points">8</span></div>
</div>
</div>
</div>
<div class="modal hidden">
<div class="modal-info">
<h3 class="modal-title"></h3>
<p class="modal-text"></p>
<button class="new-game-button modal-button">New Game</button>
</div>
</div>
<div class="bonus invisible">
<h1 class="bonus-title">Bonus</h1>
<h1 class="bonus-subtitle">+1 Live</h1>
</div>
<!-- <script src="game.js"></script> -->
<script src="game.js"></script>
</body>
</html>