-
Notifications
You must be signed in to change notification settings - Fork 0
/
courses.html
416 lines (390 loc) · 12.6 KB
/
courses.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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
<!DOCTYPE html>
<html lang="en">
<head>
<title>Courses</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Bootstrap CSS v5.3.3 -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous" />
<style>
.carousel-item {
height: 800px;
}
.carousel-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.carousel-item img {
object-fit: cover;
object-position: center;
width: 100%;
height: 100%;
filter: brightness(0.6);
}
.carousel-caption {
top: 50%;
transform: translateY(-50%);
bottom: initial;
color: #ffff;
}
.carousel-caption h5 {
font-size: 3.5rem;
margin-bottom: 20px;
}
.carousel-caption p {
font-size: 2.25rem;
margin-top: 20px;
}
.carousel-btn {
background-color: #008cba;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 26px;
margin-top: 20px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.carousel-btn:hover {
background-color: #005f73;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
background-color: #000000;
border-radius: 60%;
padding: 10px;
width: 40px;
height: 40px;
}
.navbar-brand img {
max-height: 40px;
}
.main-heading {
text-align: center;
margin-top: 50px;
margin-bottom: 30px;
font-size: 2.5rem;
color: #333;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.course-image {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 8px;
}
.course-text {
font-size: 1.1rem;
line-height: 1.6;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}
.learn-more-btn {
background-color: #008cba;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
margin-top: 20px;
cursor: pointer;
transition: background-color 0.3s ease;
border-radius: 25px;
width: 150px;
}
.learn-more-btn:hover {
background-color: #005f73;
}
footer {
padding-top: 50px; /* Adjust this value as needed */
}
@media (min-width: 768px) {
.course-item:nth-child(even) .course-image-container {
order: 2;
}
.course-item:nth-child(even) .course-text-container {
order: 1;
}
}
@media (max-width: 767px) {
.course-item {
display: flex;
flex-direction: column;
}
.course-image-container {
order: 1;
}
.course-text-container {
order: 2;
}
}
</style>
</head>
<body>
<header>
<nav
class="navbar fixed-top navbar navbar-expand-lg bg-primary"
data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img
src="https://cdn4.iconfinder.com/data/icons/circle-law/512/law_16-512.png"
alt="Brand Logo" />
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="/index.html">Home</a>
</li>
<li class="nav-item">
<a
class="nav-link active"
aria-current="page"
href="/courses.html"
>Courses</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="/contact_us.html">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Our Values</a>
</li>
</ul>
<form class="d-flex" role="search">
<input
class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search" />
<button class="btn btn-outline-light" type="submit">
Search
</button>
</form>
</div>
</div>
</nav>
</header>
<main class="container-fluid" style="margin-top: 5rem">
<div
class="mt-3 row mx-auto"
style="justify-content: center; max-width: 57rem">
<h1 class="fw-bold mb-0">Courses</h1>
<h2 class="fw-normal text-secondary">Ngā akoranga</h2>
<div
class="card m-2"
style="width: 18rem; padding: 0"
aria-label="Course card">
<img
class="card-img-top"
src="/assets/jazz.jpeg"
style="
max-height: 200px;
object-fit: cover;
object-position: center top;
"
alt="Person doing jazz dance" />
<div class="card-body">
<h5 class="card-title">Jazz Dance</h5>
<h6 class="card-subtitle mb-2 text-body-secondary">Monday 5-6pm</h6>
<p class="card-text">
Embrace the vibrant energy of jazz with our dynamic dance classes
that blend rhythm, style, and improvisation.
</p>
<a href="#" class="btn btn-primary card-link" data-bs-theme="dark"
>View</a
>
</div>
</div>
<div
class="card m-2"
style="width: 18rem; padding: 0"
aria-label="Course card">
<img
class="card-img-top"
src="/assets/ballet.jpeg"
style="max-height: 200px; object-fit: cover"
alt="Ballet dancer" />
<div class="card-body">
<h5 class="card-title">Ballet</h5>
<h6 class="card-subtitle mb-2 text-body-secondary">
Tuesday 5-6pm
</h6>
<p class="card-text">
Experience the grace and precision of classical ballet, perfect
for both beginners and advanced dancers.
</p>
<a href="#" class="btn btn-primary card-link">View</a>
</div>
</div>
<div
class="card m-2"
style="width: 18rem; padding: 0"
aria-label="Course card">
<img
class="card-img-top"
src="/assets/hip_hop.png"
style="max-height: 200px; object-fit: cover"
alt="Woman breakdancing" />
<div class="card-body">
<h5 class="card-title">Hip Hop</h5>
<h6 class="card-subtitle mb-2 text-body-secondary">
Wednesday 5-6pm
</h6>
<p class="card-text">
Get into the groove with our hip hop classes that focus on rhythm,
movement, and street style.
</p>
<a href="#" class="btn btn-primary card-link">View</a>
</div>
</div>
<div
class="card m-2"
style="width: 18rem; padding: 0"
aria-label="Course card">
<img
class="card-img-top"
src="/assets/piano.jpeg"
style="max-height: 200px; object-fit: cover"
alt="Person playing piano" />
<div class="card-body">
<h5 class="card-title">Piano</h5>
<h6 class="card-subtitle mb-2 text-body-secondary">
Thursday 5-6pm
</h6>
<p class="card-text">
Unlock the world of music with our piano lessons, catering to all
skill levels from beginners to advanced players.
</p>
<a href="#" class="btn btn-primary card-link">View</a>
</div>
</div>
<div
class="card m-2"
style="width: 18rem; padding: 0"
aria-label="Course card">
<img
class="card-img-top"
src="/assets/guitar.jpeg"
style="max-height: 200px; object-fit: cover"
alt="Guitar" />
<div class="card-body">
<h5 class="card-title">Guitar</h5>
<h6 class="card-subtitle mb-2 text-body-secondary">Friday 5-6pm</h6>
<p class="card-text">
Strum your way to musical mastery with our guitar courses,
designed for aspiring musicians of all ages.
</p>
<a href="#" class="btn btn-primary card-link">View</a>
</div>
</div>
<div
class="card m-2"
style="width: 18rem; padding: 0"
aria-label="Course card">
<img
class="card-img-top"
src="/assets/kapa_haka.jpeg"
style="
max-height: 200px;
object-fit: cover;
object-position: center top;
"
alt="Kapa Haka" />
<div class="card-body">
<h5 class="card-title">Kapa Haka</h5>
<h6 class="card-subtitle mb-2 text-body-secondary">
Saturday 5-6pm
</h6>
<p class="card-text">
Immerse yourself in the rich cultural heritage of Aotearoa with
our Kapa Haka classes, where you'll learn traditional Māori
performing arts, including waiata (songs), haka (posture dances),
and poi (performance with tethered weights).
</p>
<a href="#" class="btn btn-primary card-link">View</a>
</div>
</div>
</div>
</main>
<footer class="bg-body-tertiary text-center text-lg-start">
<!-- Grid container -->
<div class="container p-4">
<!--Grid row-->
<div class="row">
<!--Grid column-->
<div class="col-lg-6 col-md-12 mb-4 mb-md-0">
<h5 class="text-uppercase"></h5>
<p>Instagram - @SchoolOfArtInstagram</p>
<p>Facebook - @SchoolOfArtFacebook</p>
<p>TikTok - @SchoolOfArtTikTok</p>
<p>Address - Level 3/182 Broadway, Newmarket, Auckland 1023</p>
<p>Contact Us - 0210308228</p>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-6 col-md-12 mb-4 mb-md-0">
<h5 class="text-uppercase">Other notices</h5>
<p>
Thank you for visiting our website. If you have any further
questions, please contact us by mail, email, phone number or
visiting us at our given address. We would be thrilled to have you
as a part of our Whanau.
</p>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div
class="text-center p-3"
style="background-color: rgba(0, 0, 0, 0.05)">
© 2024 School of Art:
<a class="text-body" href="https://mdbootstrap.com/">SchoolOfArt.com</a>
│ <a class="text-body" href="#">Terms & Conditions</a>
</div>
<!-- Copyright -->
</footer>
<!-- Bootstrap JavaScript Libraries -->
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
crossorigin="anonymous"></script>
</body>
</html>