-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (51 loc) · 1.6 KB
/
Copy pathindex.html
File metadata and controls
52 lines (51 loc) · 1.6 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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<title>Campo Minado</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<section id="score-container">
<div>
<img src="./icons/clock.png">
<span id="score-value">0</span>
</div>
</section>
<section id="flag-container">
<div>
<span id="flag-value">0</span>
<img src="./icons/flag.png">
</div>
</section>
</header>
<main>
<section id="table-container"></section>
<section id="modal-container">
<div id="modal">
<div>
<div id="score-container">
<div>
<img src="./icons/clock.png">
<span id="score-value">--</span>
</div>
</div>
<div id="record-container">
<div>
<span id="record-value">--</span>
<img src="./icons/trophy.png">
</div>
</div>
</div>
<div>
<button onclick="Table.restartGame();">Play Again</button>
</div>
</div>
</section>
</main>
<script type="text/javascript" src="./script.js"></script>
</body>
</html>