-
Notifications
You must be signed in to change notification settings - Fork 0
/
minesweeper.html
41 lines (35 loc) · 1.32 KB
/
minesweeper.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
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="minesweeper.css">
<link rel="stylesheet" href="design/gametext.css" />
<title>Minesweeper</title>
</head>
<body>
<nav>
<a href="../index.html">Home</a>
<a href="../snake.html">Snake</a>
<a href="../pacman.html">Pacman</a>
<a href="../tetris.html">Tetris</a>
<a href="../pool.html">Pool</a>
<a href="../doodlebird.html">Doodle Bird</a>
<a href="../pingpong.html">Pong</a>
<a href="../cars.html">Cars</a>
<a href="../spacewar.html">Space war</a>
<a href="../minesweeper.html">Minesweeper</a>
</nav>
<div class="container">
<div class="top">
<div class="flag-box"><h1>0<span id="flags-left"></span></h1></div>
<button class="emoji-btn"><h1>🙂</h1></button>
<div class="timer-box"><h1><span id="timer">0</span></h1></div>
</div>
<div class="grid"></div>
<div id="result"></div>
</div>
<script src="minesweeper.js"></script>
<div style="position: fixed; bottom: 10px; right: 10px; color: white; font-size: 5px;">
<a href="https://kamaukimaru.vercel.app" target="_blank" style="color: white;">
©2023 Lewis Kimaru. All rights reserved.
</a>
</body>