-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minesweeper</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital@1&family=Lato:wght@100;300;400&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="stylesheet" href="style.css">
<script src="index.js"></script>
</head>
<body>
<div class="modal-wrapper">
<div class="modal">
<table class="stats-table">
<thead>
<tr><th colspan="4">Time: <span class="time">3:00.00</span></th></tr>
</thead>
<tbody>
<tr><td>3BV: </td><td class="bbbv">23</td><td>3BV/s: </td><td class="bbbvs">2.5</td></tr>
<tr><td>Clicks: </td><td class="clicks">23</td><td>Eff: </td><td class="efficiency">85%</td></tr>
</tbody>
</table>
</div>
</div>
<div class="content-container">
<div class="game-container">
<div class="game"></div>
</div>
</div>
</body>
</html>