generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
321 lines (317 loc) · 17.5 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
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Boardwalk Games, your ultimate gaming retreat! Perfect for casual gamers, enthusiasts, and student gatherings. Visit us for your next adventure in board gaming.">
<!-- favicons generated by favicon.io -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon-16x16.png">
<title>Boardwalk Games | Home</title>
<!-- Bootstrap CSS Stylesheet -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Custom CSS Stylesheet -->
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body class="d-flex flex-column min-vh-100"> <!-- Flexbox classes to allow use of flex attributes -->
<!-- Navigation Elements -->
<nav class="navbar navbar-expand-lg sticky-top" data-bs-theme="dark" id="navbar">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="assets/images/logo-sm-white.png" class="logo" alt="Boardwalk Games Logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#events">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="game-library.html">Games</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a href="booking.html" class="btn custom-button-filled ms-lg-3" aria-label="Click here to book a table (opens form)">Book Now</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header Section Elements -->
<header class="container section" id="header">
<div class="row">
<div class="col-12 col-xl-6 text-center text-xl-start">
<h1 class="display-3">Boardwalk Games</h1>
<p class="lead display-6 sub-heading-color">Your next adventure is waiting!</p>
<p class="my-4">Welcome to Boardwalk Games, Your Ultimate Gaming Getaway! Escape into the world of board games and café delights. Whether you're a casual gamer seeking a cosy nook to unwind, a board game enthusiast ready for your next challenge, or a student gamer looking for a fun, affordable hangout, we've got you covered.</p>
<a href="booking.html" class="btn custom-button-outline mb-4" aria-label="Click here to book a table (opens form)">Book Now</a>
</div>
<div class="col-12 col-xl-6">
<div id="carouselExampleAutoplaying" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="8000">
<img src="assets/images/boardwalk-games-carousel-image-1.webp" class="d-block w-100" alt="The inside of Boardwalk Games with bookshelves filled with boardgames, and wooden tables to play at">
</div>
<div class="carousel-item" data-bs-interval="6000">
<img src="assets/images/boardwalk-games-carousel-image-2.webp" class="d-block w-100" alt="The inside of Boardwalk Games with bookshelves filled with boardgames, and wooden tables to play at">
</div>
<div class="carousel-item" data-bs-interval="6000">
<img src="assets/images/boardwalk-games-carousel-image-3.webp" class="d-block w-100" alt="The inside of Boardwalk Games with bookshelves filled with boardgames, and wooden tables to play at">
</div>
<div class="carousel-item" data-bs-interval="6000">
<img src="assets/images/boardwalk-games-carousel-image-4.webp" class="d-block w-100" alt="The back-room at Boardwalk Games set up for a Dungeons and Dragons evening">
</div>
<div class="carousel-item" data-bs-interval="6000">
<img src="assets/images/boardwalk-games-carousel-image-5.webp" class="d-block w-100" alt="A cup of steaming coffee on a wooden table, some playing cards, and a notebook.">
</div>
<div class="carousel-item" data-bs-interval="6000">
<img src="assets/images/boardwalk-games-carousel-image-6.webp" class="d-block w-100" alt="Students playing a card game at Boardwalk Games">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
</header>
<!-- Main Section Elements -->
<main>
<!-- Services Section -->
<section class="container services mt-4" id="services">
<div class="row">
<div class="col-12 text-center">
<h2 class="display-6">Services</h2>
</div>
<div class="col-12 col-md-6 col-xl-3">
<div class="card">
<img src="assets/images/services-1.webp" class="card-img-top"
alt="Boardwalk games cafe table by a window, stacks of boardgames can be seen on the table">
<div class="card-body">
<h3 class="card-title sub-heading-color">Play in our cafe</h3>
<p class="card-text">
Enjoy a relaxing atmosphere while diving into exciting board
games with friends. Indulge in our cosy café offerings, from
aromatic coffees to savory snacks.
</p>
</div>
<div class="card-footer">
<p class="mb-0">€7 per person</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-xl-3">
<div class="card">
<img src="assets/images/services-2.webp" class="card-img-top"
alt="Board games stacked in bookshelves, a man can be seen browsing the shelves">
<div class="card-body">
<!-- bootstrap cards come as h5 by default, changed to h3 to fit project heading hierarchy -->
<h3 class="card-title sub-heading-color">Game library</h3>
<p class="card-text">
Explore our collection of board games, ranging from classic
favorites to the latest releases. Find the perfect game for
any age, skill level, or interest.
</p>
</div>
<div class="card-footer">
<p class="mb-0">See prices in store</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-xl-3">
<div class="card">
<img src="assets/images/services-3.webp" class="card-img-top" alt="Boardwalk players sat playing chess">
<div class="card-body">
<h3 class="card-title sub-heading-color">Events</h3>
<p class="card-text">
Join us for special game nights, tournaments, and themed
events. A great opportunity to meet new people and test your
gaming skills.
</p>
</div>
<div class="card-footer">
<p class="mb-0">From €5 per person</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-xl-3">
<div class="card">
<img src="assets/images/services-4.webp" class="card-img-top"
alt="A kids party being held at Boardwalk Games">
<div class="card-body">
<h3 class="card-title sub-heading-color">Kids parties</h3>
<p class="card-text">
Celebrate your child's special day with us! We offer fun,
game-filled party packages that are sure to delight young
gamers and their friends.
</p>
</div>
<div class="card-footer">
<p class="mb-0">From €7 per child</p>
</div>
</div>
</div>
</div>
</section>
<!-- Join our events section -->
<section class="container section" id="events">
<div class="row justify-content-center">
<div class="col-12 text-center">
<h2 class="display-6">Join our Events</h2>
</div>
<div class="col-12 col-lg-6 ">
<p>Whether you're delving into dungeons, reliving classic games, or competing in high-stakes tournaments, there's something for every gamer. Reservations are recommended to ensure your spot at the table. Student discounts are available, so bring your student ID and enjoy more gaming for less.</p>
<p>Outside scheduled events, our shop remains open for regular play. Join us anytime to discover new games and meet fellow enthusiasts.</p>
</div>
<div class="col-12 col-lg-6 table-responsive">
<table class="table table-sm">
<thead>
<tr>
<th scope="col">Event</th>
<th scope="col">Date</th>
<th scope="col">Time</th>
<th scope="col">Price</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Dungeons & Dragons</th>
<td>Tuesdays</td>
<td>8pm - 11pm</td>
<td>€25 for 6 sessions</td>
</tr>
<tr>
<th scope="row">Retro Game Night</th>
<td>Thursdays</td>
<td>8pm - 11pm</td>
<td>€5 per person*</td>
</tr>
<tr>
<th scope="row">Tournaments</th>
<td>Last Sunday of the month</td>
<td>12pm - 7pm</td>
<td>€10 per person</td>
</tr>
</tbody>
</table>
<div class="col-12">
<p class="text-center custom-message">*Get 20% off with valid student ID</p>
</div>
</div>
<div class="col-12 text-center my-4">
<a href="booking.html" class="btn custom-button-outline mb-4" aria-label="Click here to book a table (opens form)">Book Now</a>
</div>
</div>
</section>
</main>
<!-- Footer / Contact Section Elements -->
<footer class="mt-auto" id="contact"> <!-- Bootstrap margin-auto added to push Footer to bottom of page -->
<div class="container section">
<div class="row justify-content-center">
<div class="col-12 text-center">
<h2 class="display-6">Contact Us</h2>
</div>
<!-- Contact Info -->
<div class="col-12 col-md-6 col-xl-4">
<h3 class="sub-heading-color">Contact Info</h3>
<address>
<strong><i class="fa-solid fa-location-dot"></i> Boardwalk Games</strong><br>
123 Boardwalk<br>
Boardwalk City, 12345
</address>
<p><i class="fa-solid fa-phone"></i> 012 345 6789<br>
<i class="fa-regular fa-paper-plane"></i> [email protected]</p>
<div class="social-links my-4">
<ul class="d-flex list-unstyled">
<li>
<a href="index.html" target="_blank" aria-label="Visit our instagram (opens in new tab)" rel="noopener"><i class="fa-brands fa-instagram"></i></a>
</li>
<li>
<a href="index.html" target="_blank" aria-label="Visit our facebook (opens in new tab)" rel="noopener"><i class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a href="index.html" target="_blank" aria-label="Visit our X (opens in new tab)"><i class="fa-brands fa-x-twitter" rel="noopener"></i></a>
</li>
</ul>
</div>
</div>
<!-- Opening times -->
<div class="col-12 col-md-6 col-xl-4">
<h3 class="sub-heading-color">Opening times</h3>
<table class="table table-dark">
<thead>
<tr>
<th scope="col">Day</th>
<th scope="col">Open</th>
<th scope="col">Close</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Mon</th>
<td colspan="2">Closed</td>
</tr>
<tr>
<th scope="row">Tue - Thur</th>
<td>11am</td>
<td>11pm</td>
</tr>
<tr>
<th scope="row">Fri - Sat</th>
<td>11am</td>
<td>12am</td>
</tr>
<tr>
<th scope="row">Sun</th>
<td>12pm</td>
<td>7pm</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</footer>
<!-- Bootstrap 5.3.3 Functionality Script -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!-- FontAwesome Kit Script -->
<script src="https://kit.fontawesome.com/c480bc9d4e.js" crossorigin="anonymous"></script>
<!-- Fix Navbar sticking issue when selecting link to on-page elements -->
<script>
document
.querySelectorAll(".navbar-collapse .nav-link")
.forEach((link) => {
link.addEventListener("click", function (e) {
let section = document.querySelector(e.target.getAttribute("href"));
if (section) {
e.preventDefault(); // Prevent default anchor click behavior
let navbarHeight = document.querySelector(".navbar-toggler").offsetHeight;
window.scroll({
top: section.offsetTop - navbarHeight, // Adjust for navbar height
behavior: "smooth",
});
document
.querySelector(".navbar-collapse")
.classList.remove("show"); // Collapse navbar
}
});
});
</script>
</body>
</html>