This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecommendations.html
272 lines (251 loc) · 10.7 KB
/
recommendations.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<!DOCTYPE html>
<html lang="en">
<head>
<!--Written by Zer Jun Eng-->
<meta charset="utf-8">
<meta name="author" content="Zer Jun Eng">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Puzzlity - About Us</title>
<!--Link Google Roboto font, a favicon and stylesheets-->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="icon" href="./images/logo/logo_globe.png">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/recommendations.css">
<script defer src="./javascript/menu.js"></script>
</head>
<body>
<!--This div element is the dark overlay when the menu is open-->
<div id="mobile_menu_overlay"></div>
<header>
<!--Logo to be shown on mobile platform-->
<div id="mobile_logo">
<a href="/com1008">
<img src="./images/logo/logo_globe.svg" alt="Main Logo of Puzzlity" height="120" width="120">
</a>
</div>
<button type="button" id="mobile_menu_button" onClick="openMenu()">
<img src="./images/menu_icon/menu.svg" alt="Hamburger menu icon" height="20" width="20">Menu
</button>
<!--Off-canvas menu on mobile display-->
<nav id="mobile_menu">
<a href="javascript:void(0)" id="close_button" onclick="closeMenu()">×</a>
<ul>
<!--Credit: all the menu icons are free licenses from flaticon.com. Edited using Adobe Illustrator.-->
<li>
<a href="/com1008">
<img class="menu_icon" src="./images/menu_icon/home.svg" alt="Home icon" height="25" width="25">Home
</a>
</li>
<li>
<a href="recommendations">
<img class="menu_icon" src="./images/menu_icon/star.svg" alt="Star icon" height="25" width="25">Recommendations
</a>
</li>
<li>
<a href="puzzles">
<img class="menu_icon" src="./images/menu_icon/puzzle.svg" alt="Puzzle icon" height="25" width="25">Puzzlity!
</a>
</li>
<li>
<a href="news">
<img class="menu_icon" src="./images/menu_icon/news.svg" alt="News icon" height="25" width="25">News
</a>
</li>
<li>
<a href="about">
<img class="menu_icon" src="./images/menu_icon/about.svg" alt="About icon" height="25" width="25">About Us
</a>
</li>
<li>
<a href="contact">
<img class="menu_icon" src="./images/menu_icon/contact.svg" alt="Contact icon" height="25" width="25">Contact Us
</a>
</li>
<li>
<a href="accessibility">
<img class="menu_icon" src="./images/menu_icon/accessibility.svg" alt="Accessibility icon" height="25" width="25">Accessibility
</a>
</li>
</ul>
</nav>
<!--Horizontal menu bar on desktop display-->
<nav id="desktop_menu">
<table>
<!--Credit: all the vector menu icons are free license from flaticon.com. Edited using Adobe Illustrator.-->
<tr>
<td class="logo_box">
<a id="desktop_logo" href="/com1008">
<img id="full" src="./images/logo/logo_full.svg" alt="Main Logo of Puzzlity" height="95" width="95">
<img id="globe" src="./images/logo/logo_globe.svg" alt="Main Logo of Puzzlity" height="50" width="50">
<img id="word" src="./images/logo/logo_word.svg" alt="Main Logo of Puzzlity" height="51" width="87">
</a>
</td>
<td>
<a href="/com1008">
<span class="vertical_align">
<img class="menu_icon" src="./images/menu_icon/home.svg" alt="Home icon" height="40" width="40">
<span class="desc"><br>Home</span>
</span>
</a>
</td>
<td class="longer">
<a href="recommendations">
<span class="vertical_align">
<img class="menu_icon" src="./images/menu_icon/star.svg" alt="Star icon" height="40" width="40">
<span class="desc"><br>Recommendations</span>
</span>
</a>
</td>
<td>
<a href="puzzles">
<span class="vertical_align">
<img class="menu_icon" src="./images/menu_icon/puzzle.svg" alt="Puzzle icon" height="40" width="40">
<span class="desc"><br>Puzzlity!</span>
</span>
</a>
</td>
<td>
<a href="news">
<span class="vertical_align">
<img class="menu_icon" src="./images/menu_icon/news.svg" alt="News icon" height="40" width="40">
<span class="desc"><br>News</span>
</span>
</a>
</td>
<td>
<a href="about">
<span class="vertical_align">
<img class="menu_icon" src="./images/menu_icon/about.svg" alt="About icon" height="40" width="40">
<span class="desc"><br>About Us</span>
</span>
</a>
</td>
<td>
<a href="contact">
<span class="vertical_align">
<img class="menu_icon" src="./images/menu_icon/contact.svg" alt="Contact icon" height="40" width="40">
<span class="desc"><br>Contact Us</span>
</span>
</a>
</td>
<td>
<a href="accessibility">
<span class="vertical_align">
<img class="menu_icon" src="./images/menu_icon/accessibility.svg" alt="Accessibility icon" height="40" width="40">
<span class="desc"><br>Accessibility</span>
</span>
</a>
</td>
</tr>
</table>
</nav>
</header>
<!--Push the main content down so it won't be blocked by the fixed horizontal desktop menu-->
<div id="space"></div>
<main>
<!--Credit: all these images are from Google Images, converted into SVG file format using https://www.vectorizer.io/-->
<!--Match-the-pairs puzzle-->
<section class="match">
<h1>Match-the-pairs puzzle</h1>
<div class="flexbox">
<img id="match_the_pairs" src="./images/recommendations/match-the-pairs.svg"
alt="Image of match-the-pairs puzzle game" width="250">
<div class="flextext">
<p class="review">"It's interesting and challenging."</p>
<p class="review">"This game improves my memory skill."</p>
<p class="review">"Simply amazing and engaging."</p>
</div>
</div>
</section>
<!--Sliding-blocks puzzle-->
<section class="sliding">
<h1>Sliding-blocks puzzle</h1>
<div class="flexbox">
<img id="sliding_blocks" src="./images/recommendations/sliding-blocks.svg"
alt="Image of sliding-blocks puzzle game" width="250">
<div class="flextext">
<p class="review">"Easy and intriguing."</p>
<p class="review">"A simply ingenious puzzle game."</p>
<p class="review">"Everyone should play this game, it's just nice!"</p>
</div>
</div>
</section>
<!--Spot-the-difference puzzle-->
<section class="spot">
<h1>Spot-the-difference puzzle</h1>
<div class="flexbox">
<img id="spot_the_difference" src="./images/recommendations/spot-the-difference.svg"
alt="Image of spot-the-difference puzzle game" width="250">
<div class="flextext">
<p class="review">"Nice and relaxing game."</p>
<p class="review">"This game is easy and fun."</p>
<p class="review">"A simple yet enjoyable puzzle game."</p>
</div>
</div>
</section>
<!--Extra: Matchstick puzzle-->
<section class="matchstick">
<h1>Matchstick puzzle</h1>
<div class="flexbox">
<img id="matchstick" src="./images/recommendations/matchstick.svg"
alt="Image of matchstick puzzle game" width="250">
<div class="flextext">
<p class="review">"Fun for all ages."</p>
<p class="review">"It keeps my mind sharp."</p>
<p class="review">"One of the most addictive and challenging puzzle games."</p>
</div>
</div>
</section>
<!--Extra: River-crossing puzzle-->
<section class="river">
<h1>River crossing puzzle</h1>
<div class="flexbox">
<img id="river" src="./images/recommendations/river-crossing.svg"
alt="Image of river crossing puzzle game" width="250">
<div class="flextext">
<p class="review">"It will improve your problem solving skills."</p>
<p class="review">"This game has different solutions for every level."</p>
<p class="review">"One of the best game to train a child's logic."</p>
</div>
</div>
</section>
<!--Extra: Special Recommendations Section-->
<section class="special">
<h1>Special Recommendations</h1>
<div class="flexbox">
<div class="first_special">
<h2>Where's My Water?</h2>
<img class="special_img" src="./images/recommendations/wheres-my-water.svg"
alt="Image of Where's My Water puzzle game" height="200" width="200">
<a class="clickMe" href="http://games.disney.co.uk/disney-xd/wheres-my-water">Click me!</a>
</div>
<div class="second_special">
<h2>Cut the Rope</h2>
<img class="special_img" src="./images/recommendations/cut-the-rope.svg"
alt="Image of Cut the Rope puzzle game" height="200" width="200">
<a class="clickMe" href="http://www.cuttherope.net/">Click me!</a>
</div>
<div class="third_special">
<h2>King of Thieves</h2>
<img class="special_img" src="./images/recommendations/king-of-thieves.svg"
alt="Image of Where's My Water puzzle game" height="200" width="200">
<a class="clickMe" href="http://www.kingofthieves.com/">Click me!</a>
</div>
</div>
</section>
</main>
<!--Footer template on all pages-->
<footer>
<a href="/com1008">
<img id="footer_logo" src="./images/logo/logo_word.svg" alt="Footer logo: puzzlity" width="120">
</a>
<ul class="footer_nav">
<li><a class="footer_link" href="news">News</a></li>
<li><a class="footer_link" href="about">About Us</a></li>
<li><a class="footer_link" href="contact">Contact Us</a></li>
<li><a class="footer_link" href="accessibility">Accessibility</a></li>
</ul>
<h4 id="footer_copyright">© Zer Jun ENG, Web Assignment, 2016</h4>
</footer>
</body>
</html>