-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
499 lines (493 loc) · 20.3 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
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="https://getbootstrap.com/docs/5.3/assets/css/docs.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script src="js/main.js"></script>
<script src="js/animations.js"></script>
</head>
<body>
<header>
<nav class="navbar">
<div class="menucontainer" style="width: 95.88%">
<img
class="logo"
src="images/Logo.jpg"
alt="ArtGalleryLogo"
height="90"
/>
<ul class="nav-menu">
<li>
<a href="#" class="active">
<i class="fas fa-home fa-lg" aria-hidden="true"></i>
<span>Home</span>
</a>
</li>
<li>
<a href="gallery.html">
<i class="fa-solid fa-tag fa-lg" aria-hidden="true"></i>
<span>Gallery</span>
</a>
</li>
<li>
<a href="about.html">
<i class="fa-solid fa-circle-info fa-lg" aria-hidden="true"></i>
<span>About</span>
</a>
</li>
<li>
<a href="contact.html">
<i class="fa-solid fa-phone fa-lg" aria-hidden="true"></i>
<span>Contact Us</span>
</a>
</li>
<li>
<a href="admin.html">
<i class="fa-solid fa-phone fa-lg" aria-hidden="true"></i>
<span>Admin</span>
</a>
</li>
</ul>
</div>
</nav>
<!-- header container ends here -->
</header>
<main>
<div
id="carouselExampleDark"
class="carousel carousel-fade slide"
data-bs-ride="carousel"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleDark"
data-bs-slide-to="0"
class="active"
aria-label="Slide 1"
aria-current="true"
></button>
<button
type="button"
data-bs-target="#carouselExampleDark"
data-bs-slide-to="1"
aria-label="Slide 2"
class=""
></button>
<button
type="button"
data-bs-target="#carouselExampleDark"
data-bs-slide-to="2"
aria-label="Slide 3"
class=""
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://images6.alphacoders.com/592/592471.jpg" />
<div class="carousel-caption d-none d-md-block">
<h1>Where Inspiration Ignites</h1>
<p>Explore a world of art that moves you.</p>
</div>
</div>
<div class="carousel-item">
<img
src="https://wallpapers.com/images/featured/4k-painting-ze08s2umco2ikud6.jpg"
/>
<div class="carousel-caption d-none d-md-block">
<h1>The Canvas of Creativity</h1>
<p>
Discover emerging and established artists at our Art Gallery.
</p>
</div>
</div>
<div class="carousel-item">
<img
src="https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/c424bbb0-a0e6-4a95-b422-56f707c6e172/dgxjjgo-a25edd46-cb6d-4c0a-a25a-6ce211ced737.jpg/v1/fill/w_1280,h_431,q_75,strp/painting_landscape__concept_art__hd_wallpaper__by_gabimedia_dgxjjgo-fullview.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcL2M0MjRiYmIwLWEwZTYtNGE5NS1iNDIyLTU2ZjcwN2M2ZTE3MlwvZGd4ampnby1hMjVlZGQ0Ni1jYjZkLTRjMGEtYTI1YS02Y2UyMTFjZWQ3MzcuanBnIiwiaGVpZ2h0IjoiPD00MzEiLCJ3aWR0aCI6Ijw9MTI4MCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS53YXRlcm1hcmsiXSwid21rIjp7InBhdGgiOiJcL3dtXC9jNDI0YmJiMC1hMGU2LTRhOTUtYjQyMi01NmY3MDdjNmUxNzJcL2dhYmltZWRpYS00LnBuZyIsIm9wYWNpdHkiOjk1LCJwcm9wb3J0aW9ucyI6MC40NSwiZ3Jhdml0eSI6ImNlbnRlciJ9fQ.thqAJSknsTSn21CTxeoC_qMxQ7lSZB5N1ct4QhE7iOw"
/>
<div class="carousel-caption d-none d-md-block">
<h1>Encounter the Extraordinary</h1>
<p>Immerse yourself in captivating exhibitions.</p>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleDark"
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="#carouselExampleDark"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<center>
<h1 class="headingtext">History of our art gallery</h1>
<h1 class="subheadingtext">
Over 75 years of fostering artistic expression.
</h1>
<p class="w-50">
Immerse yourself in the rich history of our gallery, a vibrant hub for
artistic exploration since 1948. <br />
The gallery has been a cornerstone of the art community for over seven
decades, showcasing a diverse range of artistic styles and movements.
We have championed the works of emerging and established artists,
providing a platform for them to share their creativity with the
world.
</p>
</center>
<br />
<div style="background-color: #e7e7e7">
<hr />
<br />
<div class="container">
<div class="row">
<div data-aos="fade-right" class="col-md-6">
<h1 class="subheadingtext">The Museum archive</h1>
<h2 class="headingtext">Works of art</h2>
<p>
Delve into the depths of our museum's collection with the Museum
Archive: Works of Art. Explore a vast repository of artistic
treasures, encompassing [mention the range of works, e.g.,
paintings, sculptures, photographs, textiles] from across time
periods and cultures. Researchers, art enthusiasts, and anyone
curious about the history of art can delve into detailed
records, high-resolution images, and fascinating stories behind
each piece.
</p>
</div>
<div data-aos="fade-left" class="col-md-6">
<img
class="homeimg"
src="https://musea.qodeinteractive.com/wp-content/uploads/2019/09/h1-img-2.jpg"
/>
</div>
</div>
</div>
</div>
<br />
<div>
<center>
<h1 data-aos="fade-down" class="subheadingtext">
Exhibition highlights
</h1>
<h1 data-aos="fade-down" class="headingtext">Currently on view</h1>
</center>
<!-- Slider -->
<section class="bg-light p-md-2 p-0 vh-100">
<div class="container position-relative">
<!-- Cards Wrap -->
<div
data-aos="zoom-in"
class="slider d-flex align-items-center justify-content-start overflow-hidden position-relative"
>
<div
class="slider-wrap d-flex align-items-center position-absolute"
>
<div
class="slide-card position-relative bg-white overflow-hidden shadow-sm mx-2"
>
<a href="#" class="text-decoration-none">
<img
src="images/hl-painting.jpg"
alt="slide"
width="100%"
/>
<div class="p-3">
<p class="text-dark my-2 fs-5 fw-semibold">
Unveiling the Soul | Portraits that Speak Volumes
</p>
<p class="text-dark">
Journey through a captivating exploration of
portraiture, where emotions and stories come alive on
canvas.
</p>
<p class="text-muted mb-0 mt-3">18 Nov, 2022</p>
</div>
</a>
</div>
<div
class="slide-card position-relative bg-white overflow-hidden shadow-sm mx-2"
>
<a href="#" class="text-decoration-none">
<img
src="images/hl-sculpture.jpg"
alt="slide"
width="100%"
/>
<div class="p-3">
<p class="text-dark my-2 fs-5 fw-semibold">
Beyond the Surface | A Tactile Experience
</p>
<p class="text-dark">
Immerse yourself in a world of texture and form,
encountering sculptures that challenge perception and
ignite the imagination.
</p>
<p class="text-muted mb-0 mt-3">18 Nov, 2022</p>
</div>
</a>
</div>
<div
class="slide-card position-relative bg-white overflow-hidden shadow-sm mx-2"
>
<a href="#" class="text-decoration-none">
<img
src="images/hl-photography.jpg"
alt="slide"
width="100%"
/>
<div class="p-3">
<p class="text-dark my-2 fs-5 fw-semibold">
Through the Lens | Capturing the Moment
</p>
<p class="text-dark">
Witness the power of photography as artists showcase
their unique perspectives and document the world around
us.
</p>
<p class="text-muted mb-0 mt-3">18 Nov, 2022</p>
</div>
</a>
</div>
<div
class="slide-card position-relative bg-white overflow-hidden shadow-sm mx-2"
>
<a href="#" class="text-decoration-none">
<img src="images/hl-textile.jpg" width="100%" />
<div class="p-3">
<p class="text-dark my-2 fs-5 fw-semibold">
Woven Stories | Threads of Tradition and Innovation
</p>
<p class="text-dark">
Discover the beauty and artistry of textiles, <br />
where age-old techniques meet contemporary expressions.
</p>
<p class="text-muted mb-0 mt-3">18 Nov, 2022</p>
</div>
</a>
</div>
<div
class="slide-card position-relative bg-white overflow-hidden shadow-sm mx-2"
>
<a href="#" class="text-decoration-none">
<img
src="images/hl-printmaking.jpg"
alt="slide"
width="100%"
/>
<div class="p-3">
<p class="text-dark my-2 fs-5 fw-semibold">
The Power of the Press | Layers of Meaning Revealed
</p>
<p class="text-dark">
Explore the rich history and innovative techniques of
printmaking, where multiple impressions create a
captivating narrative.
</p>
<p class="text-muted mb-0 mt-3">18 Nov, 2022</p>
</div>
</a>
</div>
<div
class="slide-card position-relative bg-white overflow-hidden shadow-sm mx-2"
>
<a href="#" class="text-decoration-none">
<img
src="images/hl-performanceart.jpg"
alt="slide"
width="100%"
/>
<div class="p-3">
<p class="text-dark my-2 fs-5 fw-semibold">
The Body as Canvas | Pushing the Boundaries
</p>
<p class="text-dark">
Witness the ephemeral art form of performance where the
artist's body becomes the medium for exploring powerful
themes.
</p>
<p class="text-muted mb-0 mt-3">18 Nov, 2022</p>
</div>
</a>
</div>
<div
class="slide-card position-relative bg-white overflow-hidden shadow-sm mx-2"
>
<a href="#" class="text-decoration-none">
<img src="images/hl-digital.jpg" alt="slide" width="100%" />
<div class="p-3">
<p class="text-dark my-2 fs-5 fw-semibold">
Pixels to Possibilities | Where Technology Meets
Creativity
</p>
<p class="text-dark">
Delve into the exciting world of digital art, where
artists utilize cutting-edge technology to create
groundbreaking works.
</p>
<p class="text-muted mb-0 mt-3">18 Nov, 2022</p>
</div>
</a>
</div>
<div
class="slide-card position-relative bg-white overflow-hidden shadow-sm mx-2"
>
<a href="#" class="text-decoration-none">
<img
src="images/hl-architecture.jpg"
alt="slide"
width="100%"
/>
<div class="p-3">
<p class="text-dark my-2 fs-5 fw-semibold">
Building Visions | Designs that Shape Our World
</p>
<p class="text-dark">
Explore the artistry behind architecture, where form,
function, and vision come together to create impactful
structures.
</p>
<p class="text-muted mb-0 mt-3">18 Nov, 2022</p>
</div>
</a>
</div>
</div>
</div>
<!-- Slider Arrows -->
<!-- Left Arrow -->
<a href="#" class="text-dark" id="previous-arrow">
<div
class="arrow bg-white d-flex align-items-center justify-content-center shadow-lg border rounded-circle position-absolute bottom-50 start-0"
>
<i class="fa fa-angle-left" aria-hidden="true"></i>
</div>
</a>
<!-- Right Arrow -->
<a href="#" class="text-dark" id="next-arrow">
<div
class="arrow bg-white d-flex align-items-center justify-content-center shadow-lg border rounded-circle position-absolute bottom-50 end-0"
>
<i class="fa fa-angle-right" aria-hidden="true"></i>
</div>
</a>
</div>
</section>
</div>
<div class="mobilemenu">
<a href="index.html" class="active" style="text-decoration: none">
<div class="col-sm-2">
<span>Home</span>
</div>
</a>
<a href="gallery.html" style="text-decoration: none">
<div class="col-sm-2">
<span>Gallery</span>
</div>
</a>
<a href="about.html" style="text-decoration: none">
<div class="col-sm-2">
<span>About</span>
</div>
</a>
<a href="contact.html" style="text-decoration: none">
<div class="col-sm-2">
<span>Contact Us</span>
</div>
</a>
<a href="admin.html" style="text-decoration: none">
<div class="col-sm-2">
<span>Admin</span>
</div>
</a>
</div>
</main>
<footer>
<div class="container">
<div class="footer-sections">
<div class="column-4">
<div class="footer-nav">
<h4>Links</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="column-4">
<div class="social-links">
<h4>Follow Us</h4>
<a href="https://www.facebook.com/">
<img src="images/facebook-square.svg" alt="FB" height="40" />
</a>
<a href="https://twitter.com/i/flow/login">
<img
src="images/square-x-twitter.svg"
alt="Twitter"
height="40"
/>
</a>
<a href="https://www.instagram.com/">
<img src="images/instagram.svg" alt="Insta" height="40" />
</a>
</div>
</div>
<div class="column-4">
<div class="Contact Us">
<p>
<strong>Hours </strong><br />Tuesday-Friday: 7am-8:30pm<br />Saturday:
6am-5pm<br />Sunday: 6am-5pm
</p>
<p>Monday: <strong>CLOSED</strong></p>
<p>1076 King Street West<br />Toronto, Ontario<br />M5E 8Y5</p>
<p>
<strong>Phone</strong>:
<a href="tel:+16473637662"> 647-363-8549</a>
</p>
</div>
</div>
<div class="column-4">
<div class="map">
<h4>Find us here</h4>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d23091.415734739985!2d-79.42023590111478!3d43.660089247862054!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x882b35c2d8e22427%3A0x474ce2b07f43148!2sFENTSTER%20Gallery!5e0!3m2!1sen!2sca!4v1713321301420!5m2!1sen!2sca"
width="100%"
height="250"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>