-
Notifications
You must be signed in to change notification settings - Fork 0
/
howtoplay.html
75 lines (69 loc) · 3.52 KB
/
howtoplay.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
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
<html>
<head>
<title> How to Play </title>
</head>
<body>
<center>
<!-- Header -->
<h1>
<img src="images/bomb_revealed.gif" alt="Bomb Revealed!!!"/>
How To Play
<img src="images/bomb_revealed.gif" alt="Bomb Revealed!!!"/>
</h1>
</center>
<strong> Overview: </strong> <br/>
<i> Minesweeper is a game for those who enjoy applying their problem solving and logic skills.
The game begins with a set of empty tiles. Behind the scenes, there will be mines placed
at random positions. Your objective is to find the position of all the
mines without actually denoting the mines. If this happens, you lose. If you are able to
successfully locate all the mines without denoting any of them, you win! Read more below
to see how to you can successfully locate the mines.
</i>
<br/><br/><br/><br/>
<strong> Steps To Success: </strong>
<ol>
<li><i>To start a new game, click on 'New Game' in the menu bar. </i></li> <br/>
<li><i>Click on a random cell. I can guarantee you that you won't land on a mine!</i></li> <br/>
<li><i>You probably want to click randomly on cells until a set of 5 or 6 cells open up.
As you uncover the cells, you will see numbers on cells. These numbers signify
how many mines are touching the cell.
</i></li> <br/>
<li><i>Knowing this information, place a flag (right click) on a cell you are absolutely
certain of being a mine. 'Probably' doesn't work in this situation.</i></li> <br/>
<li><i>If you are not sure about a certain tile, place a question mark at the position.
This serves as a reminder of your suspicions.</i></li> <br/>
<li><i>This will be timed. So be sure to do this as fast as you can!</i></li>
</ol>
<br/>
<strong> Types of Cells: </strong>
<br/><br/>
<img src="images/blank.gif" alt="Empty Mines"/>
<i> The game begins with a set of empty cells. You must click on these cells
to see what is behind it! </i>
<br/><br/>
<img src="images/num_1.gif" alt="Num 1"/>
<i> If you land on a tile with a number, the number signifies how many mines are
touching that cell. </i>
<br/><br/>
<img src="images/bomb_flagged.gif" alt="Flag"/>
<i> If you suspect that there is a mine at that position, you may place a flag as
a reminder of your suspicion! </i>
<br/><br/>
<img src="images/bomb_question.gif" alt="Question"/>
<i> If you are not sure about a particular cell, you may place this tile. </i>
<br/><br/>
<img src="images/bomb_revealed.gif" alt="Mine"/>
<i> This is what a mine actually looks like. You want to avoid clicking on this
cell otherwise the game will end.</i>
<br/><br/>
<img src="images/bomb_wrong.gif" alt="Wrong"/>
<i> When you click on a mine, this will appear. It means that you have lost
the game.</i>
<br/><br/>
<img src="images/face_win.gif" width="30" height="30" alt="Win!"/>
<i> If you somehow locate all the mines (by placing a flag at the position),
you will get this face on top of the game! It means that you have won the game!</i>
<br/><br/>
<center> <h2> Have fun and Good Luck!</h2> </center>
</body>
</html>