-
Notifications
You must be signed in to change notification settings - Fork 0
/
minesweeper
62 lines (53 loc) · 1.92 KB
/
minesweeper
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
61
62
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Isaem - Minesweeper-ish</title>
<link rel = "stylesheet"
href = "https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link rel = "stylesheet" href = "stylesheets\styles.css">
<link rel = "stylesheet" href= "https://fonts.googleapis.com/css?family=Montserrat">
<link rel = "icon" href = "favicon.png" type = "image/x-icon">
</head>
<body>
<header class = "main-head">
<h1 class = "logo-text">Isaem</h1>
</header>
<div class = "navbar">
<a href = "index.html">Home</a>
<a href = "contact.html">Contact</a>
<a href = "about.html">About</a>
<a class = "active" href = "minesweeper.html">Minesweeper-ish</a>
<a href = "graphics.html">Graphics Examples</a>
</div>
<div class = "todoText">
<text>
<br>
<br>
<br>
Note: This is very much a WIP.<br>
</text>
</div>
<div id = "#gameInfoText" class = "minesweeperGameInfo">
It's player 1's turn.
</div>
<div class = "minesweeperStage">
<div id = "#stage" class = "stage"></div>
<p id = "#output" class = "output"></p>
</div>
<div class = "minesweeperText">
<text>
This is a two player variation of minesweeper.<br>
The goal is to flag the most mines by the end of the game.<br>
However, should you click a mine, you lose the game.<br>
In the current iteration of the game, it's only playable as hotseat.<br>
<br>
Currently the first move is automatic for bad luck protection.<br>
<br>
Further note: this is confirmed not to work on safari.<br>
If it isn't working for you, please use chrome!<br>
</text>
</div>
<script src="scripts/minesweeper.js"></script>
</body>
</html>