-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.html
122 lines (100 loc) · 4.07 KB
/
games.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Big Board Collection | Games</title>
<link href="css/style.css" type="text/css" rel="stylesheet" />
<link href="css/navbar.css" type="text/css" rel="stylesheet" />
<link href="css/games.css" type="text/css" rel="stylesheet" />
</head>
<body>
<!-- nav bar -->
<div class="navbar-wrapper">
<div class="navbar-container clearfix">
<a href="index.html"> <img src="images/Logo_300x300.png" height="50" alt="Logo"> </a>
<a href="games.html">GAMES</a>
<a href="events.html">EVENTS</a>
<a href="about.html">ABOUT US</a>
</div>
</div>
<!-- first three games -->
<div class="games1-wrapper ">
<div class="games1-container">
<div class="chess-wrapper">
<div class="chess-container">
<h2>Chess</h2>
</div>
<!-- image overlay -->
<div class="image-overlay">
<h2>Chess</h2>
<p>Chess is a game for 2 players, is one of the most popular board games.
Chess board is divided in two diferent color setting, composed with 32 pieces and the objective is to capture opponent's King.</p>
</div>
</div>
<div class="checkers-wrapper">
<div class="checkers-container">
<h2>Checkers</h2>
</div>
<!-- image overlay -->
<div class="image-overlay">
<h2>Checkers</h2>
<p>Checkers is a 2 players game, composed with 25 pieces and the objective is to capture all the enemies pieces.
Checkers board is divided in two difente collor settings.</p>
</div>
</div>
<div class="monopoly-wrapper">
<div class="monopoly-container">
<h2>Monopoly</h2>
</div>
<!-- image overlay -->
<div class="image-overlay">
<h2>Monopoly</h2>
<p>Monopoly is a multi-player economics-themed board game. In the<br> game, players roll two dice to move around the game board,
buying and<br> trading properties and developing them with houses and hotels.</p>
</div>
</div>
</div>
</div>
<!-- closing tags of the section-->
<!-- BIG BOARD COLLECTION with <3 -->
<!-- last three games-->
<div class="games2-wrapper">
<div class="games2-container">
<div class="scrabble-wrapper">
<div class="scrabble-container">
<h2>Scrabble</h2>
</div>
<!-- image overlay -->
<div class="image-overlay">
<h2>Scrabble</h2>
<p>Scrabble is a word game in which two to four players score points by placing tiles, each bearing a single letter,
onto a game board divided into a 15×15 grid of squares. </p>
</div>
</div>
<div class="mahjong-wrapper">
<div class="mahjong-container">
<h2>Mahjong</h2>
</div>
<!-- image overlay -->
<div class="image-overlay">
<h2>Mahjong</h2>
<p>Majong is a tile-base game developed in china , it is commonly played with 4 players .
The games is played with a set of 144tiles and each player receive 13 tiles at the beggining.</p>
</div>
</div>
<div class="domino-wrapper">
<div class="domino-container">
<h2>Domino</h2>
</div>
<!-- image overlay -->
<div class="image-overlay">
<h2>Domino</h2>
<p>Domino is a family of tile-based games,consists of 28 tiles, also known aspieces, <br>featuring all combinations of spot counts between zero and six.
The backs of the tiles <br>in a set are indistinguishable, either blank or having some common design.</p>
</div>
</div>
</div>
</div>
<!-- closing tags of the section-->
</body>
</html>