-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (66 loc) · 2.29 KB
/
Copy pathindex.html
File metadata and controls
84 lines (66 loc) · 2.29 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Minesweeper</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto+Slab" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
</head>
<body>
<main>
<h1>Minesweeper</h1>
<!-- username get's appended to this h2 -->
<h2></h2>
<input type="text" placeholder="Player name">
<button class="submit">Play</button>
<button class="game-button" id="button-green">
<a href="board1.html" title="board1">Easy </a>
</button>
<button class="game-button" id="button-yellow">
<a href="board3.html" title="board3">Medium</a>
</button>
<button class="game-button" id="button-red">
<a href="board2.html" title="board2">Hard</a>
</button>
<button class="game-button" id="button-purple">
<a href="randomBoard.html" title="randomBoard">Random</a>
</button>
</main>
<footer>
<h3 id="how-to-play">How to Play</h3>
<div class="rules">
<div class="circle-container">
<div id="red-circle" class="circle">
<span id="center-red-text">BOMB!!!</span>
</div>
</div>
<div class="circle-container">
<div id="orange-circle" class="circle">
<span id="center-orange-text">DANGER!</span>
</div>
</div>
<div class="circle-container">
<div id="yellow-circle" class="circle">
<span id="center-yellow-text">EVEN CLOSER!</span>
</div>
</div>
<div class="circle-container">
<div id="blue-circle" class="circle">
<span id="center-blue-text">CLOSE BY!</span>
</div>
</div>
<div class="circle-container">
<div id="green-circle" class="circle">
<span id="center-green-text">SAFE, NO BOMB!</span>
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="js/main.js"></script>
</body>
</html>