-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (68 loc) · 3.17 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
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JEP</title>
<!-- Main styles -->
<link type="text/css" rel="stylesheet" href="./Styles/mainStyles.css">
</head>
<body>
<!-- Main Frame -->
<div class="mainFrame">
<!-- Title -->
<div class="bluediv">
<h1> Juan Ercoli´s personal page </h1>
</div>
<!-- Item container 1 -->
<div class="itemContainer">
<div class="item">
<h2 > <a href="https://github.com/Juanercoli/Minesweeper"> Minesweeper made in java </a> </h2>
<div class="bluediv">
<img src="Resources/Minesweeper/Screenshot.png" alt="*You should see a screenshot here*">
</div>
<p>
.
<br>
The objetive of the game is to clear a rectangular board containing hidden mines
whitout detonating any of them, with help from clues about the number of
neighboring mines in each field.
<br>
Cells have three states: hidden, visible and flagged. A covered cell is blank
and clickable, while an uncovered cell is exposed. Flagged cells are those marked by
the player to indicate a potential mine location.
<br>
A player left-clicks a cell to uncover it. If a player uncovers a mined cell, the game ends, as there is only 1 life per game.
Otherwise, the uncovered cells displays either a number, indicating the quantity of mines adjacent to it, or a blank tile, and
all adjacent non-mined cells will automatically be uncovered. Right-clicking on a cell will
flag it, causing a flag to appear on it. Flagged cells are still considered covered, and a player can click to uncover them,
obviously they must first be unflagged with an additional right-click.
<br>
The first click in any game will never be a mine.
<br>
To win the game, players must uncover all non-mine cell.
<br>
.
</p>
</div>
</div>
<!-- Item container 2 -->
<div class="itemContainer">
<div class="item">
<h2 > <a href="https://github.com/Juanercoli/eBot"> eBot made in javascript </a> </h2>
<div class="bluediv">
<img src="Resources/eBot/Screenshot.png" alt="*You should see a screenshot here*">
</div>
<p>
.
<br>
This bot was made for a fun-learning process.
<br>
The nicest thing is that you can add easily any commands that you want...
<br>
.
</p>
</div>
</div>
</body>
</html>