generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
490 lines (484 loc) · 30.2 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
<!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">
<!--Bootstrap 5-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!--Import Futura from Adobe Fonts-->
<link rel="stylesheet" href="https://use.typekit.net/hdw8ydb.css">
<!--AOS Animations -->
<script src="https://unpkg.com/[email protected]/dist/aos.js">
</script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!--Favicon-->
<!--Favicon Link-->
<link rel="shortcut icon" type="image/ico" href="assets/images/favicon.ico" />
<link rel="shortcut icon" type="image/ico" href="assets/images/favicon.png" />
<link rel="stylesheet" href="assets/css/style.css">
<title>INKLUSION</title>
</head>
<body>
<!--header-->
<header class="bg-light pb-5">
<!-- Navigation -->
<nav class="navbar fixed-top bg-light navbar-expand-lg shadow-lg">
<div class="container-fluid">
<!-- Logo -->
<a class="navbar-brand" href="index.html" id="logo"><i class="fa-solid fa-droplet"></i><span
class="rainbow-text">INK</span>LUSION</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 ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-label="Go to the homepage" href="index.html">Home</a>
</li>
<li class="gallery-dropdown dropdown">
<a class="nav-link dropdown-toggle" href="#" id="galleryDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Gallery
</a>
<div class="gallery-dropdown-menu dropdown-menu nav-item" aria-labelledby="galleryDropdown">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Claude Cahun artwork"
href="#gallery">View All</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Claude Cahun artwork"
href="#cahun">Claude Cahun</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Gluck artwork"
href="#gluck">Gluck</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Beauford Delaney artwork"
href="#delaney">Beauford Delaney</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Frida Kahlo artwork"
href="#kahlo">Frida Kahlo</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Francis Bacon artwork"
href="#bacon">Francis Bacon</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Andy Warhol artwork"
href="#warhol">Andy Warhol</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Robert Mapplethorpe artwork"
href="#mapplethorpe">Robert Mapplethorpe</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Keith Haring artwork"
href="#haring">Keith Haring</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Catherine Opie artwork"
href="#opie">Catherine Opie</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<a class="dropdown-item" aria-label="Go to the Zanele Muholi artwork"
href="#muholi">Zanele Muholi</a>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item">
<a class="nav-link" aria-label="Go to the team page" href="team.html">Team</a>
</li>
<li class="nav-item">
<button type="button" class="btn btn-nav btn-modal" data-bs-toggle="modal"
data-bs-target="#resourceModal">Get Involved</button>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!--./header-->
<!--Jumbotron-->
<section class="jumbotron" id="jumbotron-section">
<div class="container">
<div class="col-12 pt-5">
<div class="row d-flex text-center" data-aos="fade-in" data-aos-duration="2500" data-aos-delay="100">
<i class="fas fa-tint fa-3x pt-3 pt-md-5 txt-shadow" id="tint"></i>
<h1 class="display-4 center" id="jumbotron-title">
<span class="rainbow-text">INK</span>LUSION
</h1>
</div>
</div>
<div class="row d-flex justify-content-center">
<div class="col-12">
<h2 class="hero-text text-center my-3 my-md-5" id="hero-content-1" data-aos="fade-in">
<br>
<span class="text-main hero-fade" data-aos="fade-in" data-aos-duration="2500"
data-aos-delay="400">Welcome to the INKLUSION art gallery</span>
<br>
<br>
<div class="dark-sm my-3" data-aos="fade-in" data-aos-duration="2500" data-aos-delay="800">A
virtual tour of <span class="rainbow-text">LGBTQIA+</span> art throughout history </div>
</h2>
</div>
</div>
<div class="row d-flex text-center py-5" data-aos="fade-in" data-aos-duration="4500" data-aos-delay="800">
<a class="text-dark" href="#gallery">
<i class="fas fa-chevron-down fa-2x mb-3"></i>
</a>
</div>
</div>
</section>
<!--Gallery Section-->
<section class="gallery-section p-3" id="gallery">
<div class="container-fluid p-3 p-md-5">
<!--section heading-->
<div class="row text-center">
<div class="col-12">
<h2 class="section-header">Gallery</h2>
<p></p>
<hr>
</div>
</div>
<!--./section heading-->
<!--gallery-->
<div class="row d-flex flex-wrap p-3 p-md-5" div data-aos="flip-left" data-aos-easing="ease-out-cubic"
data-aos-duration="3000" id="cahun">
<div class="artwork-row" id="display-1">
<div class="content">
<h2 class="artwork-title mt-3 mt-md-5">Que me veux tu?</h2>
<h3 class="artist-details">By Claude Cahun</h3>
<h4 class="dates">1894 - 1954</h4>
<p class="artwork-details">Born Lucy Renee Mathilde Schwob, Claude Cahun was a French surrealist
photographer, sculptor and writer. They were non-binary and stated that “Neuter is the only
gender that always suits me.” They collaborated with their step-sister and lover Marcel
Moore. Cahun is best known for their surrealist self-portraits which appear to experiment
with gender presentation. This work is a typical example.</p>
</div>
<div class="img my-3 my-md-5">
<img class="img-fluid art" src="assets/images/que-me-veux-tu.jpg"
alt="Image of Que me veux tu? by Claud Cahun">
<span style="display:inline-block;padding:2px 3px;" class="caption">1929, Musée d'Art
Moderne</span>
</div>
</div>
</div>
<div class="row d-flex flex-wrap p-3 p-md-5" div data-aos="flip-right" data-aos-easing="ease-out-cubic"
data-aos-duration="3000" id="gluck">
<div class="artwork-row-reverse" id="display-1">
<div class="content">
<h2 class="artwork-title mt-3 mt-md-5">Medallion</h2>
<h3 class="artist-details">By Gluck</h3>
<h4 class="dates">1895 - 1978</h4>
<p class="artwork-details">Gluck (born Hannah Gluckstein) was a British painter known for
portraits and floral paintings. They were gender nonconforming and rejected any forename or
prefix. Gluck had relationships with a number of women including Nesta Obermer. They
considered this painting of the two of them to be their marriage picture.</p>
</div>
<div class="img my-3 my-md-5">
<img class="img-fluid art" src="assets/images/medallion.jpg" alt="Image of Medallion by Gluck">
<span style="display:inline-block;padding:2px 3px;" class="caption">1937, Private
Collection</span>
</div>
</div>
</div>
<div class="row d-flex flex-wrap p-3 p-md-5" div data-aos="flip-left" data-aos-easing="ease-out-cubic"
data-aos-duration="3000" id="delaney">
<div class="artwork-row" id="display-1">
<div class="content">
<h2 class="artwork-title mt-3 mt-md-5">Can Fire in the Park</h2>
<h3 class="artist-details">By Beauford Delaney</h3>
<h4 class="dates">1901 - 1979</h4>
<p class="artwork-details">Beauford Delaney was an American modernist painter known for working
with the Harlem Renaissance in the 30s and 40s. He was gay and suffered the societal
persecutions of both his race and sexuality. Delaney moved to New York during the Great
Depression and found an affinity with the poor and disenfranchised community in Harlem. They
became the subjects of many of his works including this painting.</p>
</div>
<div class="img my-3 my-md-5">
<img class="img-fluid art" src="assets/images/can-fire-in-the-park.png"
alt="Image of Can Fire in the Park by Beauford Delaney">
<span style="display:inline-block;padding:2px 3px;" class="caption">1946, Smithsonian American
Art
Museum</span>
</div>
</div>
</div>
<div class="row d-flex flex-wrap p-3 p-md-5" div data-aos="flip-right" data-aos-easing="ease-out-cubic"
data-aos-duration="3000" id="kahlo">
<div class="artwork-row-reverse" id="display-1">
<div class="content">
<h2 class="artwork-title mt-3 mt-md-5">Las dos Fridas</h2>
<h3 class="artist-details">By Frida Kahlo</h3>
<h4 class="dates">1907 - 1954</h4>
<p class="artwork-details">Frida Kahlo was a Mexican painter known for self-portraits and work
inspired by Mexico. Kahlo was married to Mexican painter Diego Rivera for many years but was
known to have affairs with both men and women. Life experience is common in Kahlo's work and
it often reflects he physical and emotional pain, this painting is a classic example.</p>
</div>
<div class="img my-3 my-md-5">
<img class="img-fluid art" src="assets/images/the-two-fridas.jpg"
alt="Image of Los dos Fridas by Frida Kahlo">
<span style="display:inline-block;padding:2px 3px;" class="caption">1939, Museo de Arte
Moderno</span>
</div>
</div>
</div>
<div class="row d-flex flex-wrap p-3 p-md-5" div data-aos="flip-left" data-aos-easing="ease-out-cubic"
data-aos-duration="3000" id="bacon">
<div class="artwork-row" id="display-1">
<div class="content">
<h2 class="artwork-title mt-3 mt-md-5">Portrait of George Dyer in a Mirror</h2>
<h3 class="artist-details">By Francis Bacon</h3>
<h4 class="dates">1909 - 1992</h4>
<p class="artwork-details">Francis Bacon was an Irish-born British figurative painter. He is
known for his raw unsettling imagery and often created art in triptych or diptych format.
Bacon was gay and spent a number of years with Londoner George Dyer. He created a number of
artworks of Dyer including this painting.</p>
</div>
<div class="img my-3 my-md-5">
<img class="img-fluid art" src="assets/images/portrait-of-george-dyer-in-a-mirror.jpg"
alt="Image of Portrait of George Dyer in a Mirror by Francis Bacon">
<span style="display:inline-block;padding:2px 3px;" class="caption">1968, The Estate of Francis
Bacon</span>
</div>
</div>
</div>
<div class="row d-flex flex-wrap p-3 p-md-5" div data-aos="flip-right" data-aos-easing="ease-out-cubic"
data-aos-duration="3000" id="warhol">
<div class="artwork-row-reverse" id="display-1">
<div class="content">
<h2 class="artwork-title mt-3 mt-md-5">Brillo Box (Soap Pads)</h2>
<h3 class="artist-details">By Andy Warhol</h3>
<h4 class="dates">1928 - 1987</h4>
<p class="artwork-details">Andy Warhol was an American artist, film director and producer know
for his pop art. He lived as an openly gay man before the gay liberation movement. Warhol
often made mass-produced works of commercial items like this Brillo Box.</p>
</div>
<div class="img my-3 my-md-5">
<img class="img-fluid art" src="assets/images/brillo-box.jpg"
alt="Image of Brillo Box by Andy Warhol">
<span style="display:inline-block;padding:2px 3px;" class="caption">1964, Andy Warhol Foundation
for the Visual
Atrs</span>
</div>
</div>
</div>
<div class="row d-flex flex-wrap p-3 p-md-5" div data-aos="flip-left" data-aos-easing="ease-out-cubic"
data-aos-duration="3000" id="mapplethorpe">
<div class="artwork-row" id="display-1">
<div class="content">
<h2 class="artwork-title mt-3 mt-md-5">Self Portrait</h2>
<h3 class="artist-details">By Robert Mapplethorpe</h3>
<h4 class="dates">1946 - 1989</h4>
<p class="artwork-details">Robert Mapplethorpe was an American photographer. He was best known
for his black-and-white photographs and in particular his controversial works presenting the
gay male BDSM subculture of New York City. The case and acquittal around his The Perfect
Moment exhibitiion reaffirmed the right to freedon of speech and changed the world for the
LGBTQI+ community. This self portrait was taken about a year before his death due to
complications of AIDS.</p>
</div>
<div class="img my-3 my-md-5">
<img class="img-fluid art" src="assets/images/self-portrait.jpg"
alt="Image of Self portrait by Robert Mapplethorpe">
<span style="display:inline-block;padding:2px 3px;" class="caption">1980, Solomon R. Guggenheim
Museum</span>
</div>
</div>
</div>
<div class="row d-flex flex-wrap p-3 p-md-5" div data-aos="flip-right" data-aos-easing="ease-out-cubic"
data-aos-duration="3000" id="haring">
<div class="artwork-row-reverse" id="display-1">
<div class="content">
<h2 class="artwork-title mt-3 mt-md-5">Ignorance = Fear / Silence = Death</h2>
<h3 class="artist-details">By Keith Haring</h3>
<h4 class="dates">1958 - 1990</h4>
<p class="artwork-details">Keith Haring was part of the legendary New York art scene of the
1980s. His work was inspired by graffiti, pop art and underground club culture. He used his
images for social activism by advocating for safe sex and AIDS awareness. This piece is one
example of those images.</p>
</div>
<div class="img my-3 my-md-5">
<img class="img-fluid art" src="assets/images/ignorance=fear.jpg"
alt="Image of Ignorance = Fear / Silence = Death by Keith Haring">
<span style="display:inline-block;padding:2px 3px;" class="caption">1989, Whitney Museum of
American
Art</span>
</div>
</div>
</div>
<div class="row d-flex flex-wrap p-3 p-md-5" div data-aos="flip-left" data-aos-easing="ease-out-cubic"
data-aos-duration="3000" id="opie">
<div class="artwork-row" id="display-1">
<div class="content">
<h2 class="artwork-title mt-3 mt-md-5">Chicken</h2>
<h3 class="artist-details">By Catherine Opie</h3>
<h4 class="dates">1961 - present</h4>
<p class="artwork-details">Catherine Opie is an American fine-art photographer. She studies the
connections between mainstream and infrequent society. Her work is known for dealing with
questions of sexual identity, queer subculture and how people relate to their communities.
This image is part of the Being and Having series of photos which show Lesbians wearing
stereotypical masculine accessories.</p>
</div>
<div class="img my-3 my-md-5">
<img class="img-fluid art" src="assets/images/chicken.jpg"
alt="Image of Chicken by Catherine Opie">
<span style="display:inline-block;padding:2px 3px;" class="caption">1991, Catherine
Opie</span>
</div>
</div>
</div>
<div class="row d-flex flex-wrap p-3 p-md-5" div data-aos="flip-right" data-aos-easing="ease-out-cubic"
data-aos-duration="3000" id="muholi">
<div class="artwork-row-reverse" id="display-1">
<div class="content">
<h2 class="artwork-title mt-3 mt-md-5">ID Crisis</h2>
<h3 class="artist-details">By Zanele Muholi</h3>
<h4 class="dates">1972 - present</h4>
<p class="artwork-details">Zanele is a South African artist who works in photography, video and
installation. Muholi is non-binary and is known for their work documenting the lives of
South Africa's Black lesbian, gay, trans, queer and intersex communities. This work is one
such example.</p>
</div>
<div class="img my-3 my-md-5">
<img class="img-fluid art" src="assets/images/id-crisis.jpg"
alt="Image of ID Crisis by Zanele Muholi">
<span style="display:inline-block;padding:2px 3px;" class="caption">2003, Zanele
Muholi</span>
</div>
</div>
</div>
</div>
<!-- Back to top button -->
</section>
<div class=" d-flex justify-content-end">
<button type="button" class="btn border-0" id="btn-back-to-top">
<i class="fas fa-chevron-up fa-2x"></i>
</button>
</div>
<!-- Footer -->
<footer class="my-4 footer container-fluid">
<div class="clearfix text-center footer-logo">
<a class="navbar-brand" href="index.html" id="foot-logo"><i class="fa-solid fa-droplet"></i><span
class="rainbow-text">INK</span>LUSION</a>
</div>
<ul class="nav justify-content-center">
<li class="nav-item"><a href="index.html" class="nav-link px-2">Home</a></li>
<li class="nav-item"><a href="index.html#gallery" class="nav-link px-2">Gallery</a></li>
<li class="nav-item"><a href="team.html" class="nav-link px-2">Team</a></li>
<li class="nav-item"><button type="button" class="btn btn-modal" data-bs-toggle="modal"
data-bs-target="#resourceModal">Get Involved</button></li>
</ul>
<ul class="nav justify-content-center justify-content-sm-end">
<li class="nav-item"><a href="https://www.facebook.com/Code.InstituteIRL/" target="_blank"
class="nav-link px-2 text-muted"><i class="fa-brands fa-facebook"></i></a></li>
<li class="nav-item"><a href="https://twitter.com/codeinstitute" target="_blank"
class="nav-link px-2 text-muted"><i class="fa-brands fa-twitter"></i></a></li>
<li class="nav-item"><a href="https://www.linkedin.com/school/code-institute/mycompany/" target="_blank"
class="nav-link px-2 text-muted"><i class="fa-brands fa-linkedin"></i></a></li>
<li class="nav-item"><a href="https://github.com/Code-Institute-Community/ci-hackathon-app" target="_blank"
class="nav-link px-2 text-muted"><i class="fa-brands fa-github"></i></a></li>
</ul>
<p class="text-center text-muted">
<small>© 2022 Code Institutes Pride Hackathon Team - CTRL ALT Elite</small>
</p>
</footer>
<!-- Resources Modal -->
<div class="modal fade" id="resourceModal" tabindex="-1" aria-labelledby="resourceModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="resourceModalLabel">Learn, Donate, Create</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p class="mb-1">Whether you're a LGBTQIA+ artist youself or are keen to meet and support those who
are, the
below sites are a great way to start connecting with the LGBTQIA+ creative community.</p>
<ul class="resources">
<li>
<a href="http://www.alliesinarts.org/" target="_blank" rel="noopener"
aria-label="Visit the Allies in Arts website (opens in a new tab)">Allies in Arts</a>
</li>
<li>
<a href="https://www.queer-art.org/" target="_blank" rel="noopener"
aria-label="Visit the Queer Ary website (opens in a new tab)">Queer Art</a>
</li>
<li>
<a href="https://queercircle.org/" target="_blank" rel="noopener"
aria-label="Visit the Queercircle website (opens in a new tab)">Queercircle</a>
</li>
<li>
<a href="https://www.queerdesign.club/" target="_blank" rel="noopener"
aria-label="Visit the Queer Design club website (opens in a new tab)">Queer Design
Club</a>
</li>
<li>
<a href="https://www.instagram.com/arthoecollective/" target="_blank" rel="noopener"
aria-label="Visit the Art Hoe Collective Instagram (opens in a new tab)">Art Hoe
Collective</a>
</li>
<li>
<a href="https://www.instagram.com/btfacollective/" target="_blank" rel="noopener"
aria-label="Visit the Black Trans Femmes in the Arts Instagram (opens in a new tab)">Black
Trans Femmes in the Arts</a>
</li>
<li>
<a href="https://curiousarts.org.uk/" target="_blank" rel="noopener"
aria-label="Visit the Curious Arts website (opens in a new tab)">Curious Arts</a>
</li>
<li>
<a href="https://docs.google.com/spreadsheets/u/0/d/1wVeTJqrzetRUryrJUN8Ep93Kb-Kf7e_A7fIT-iuLTVo/htmlview#gid=177453409"
target="_blank" rel="noopener"
aria-label="Visit the Queer Creatives Community Directory (opens in a new tab)">Queer
Creatives Community Directory</a>
</li>
<li>
<a href="https://www.queerartprojects.co.uk/" target="_blank" rel="noopener"
aria-label="Visit the Queer Art Projects website (opens in a new tab)">Queer Art
Projects</a>
</li>
<li>
<a href="https://qyac.org.uk/" target="_blank" rel="noopener"
aria-label="Visit the Queer Youth Art Collective website (opens in a new tab)">Queer
Youth Art Collective</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Bootstrap 5 JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/2408548ad3.js" crossorigin="anonymous"></script>
<!--AOS Scripts -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!--Initialize AOS Library-->
<script>
AOS.init();
</script>
<!--Auto-close Nav-->
<script>
const navLinks = document.querySelectorAll('.nav-item')
const menuToggle = document.getElementById('navbarSupportedContent')
const bsCollapse = new bootstrap.Collapse(menuToggle, { toggle: false })
navLinks.forEach((l) => {
l.addEventListener('click', () => { bsCollapse.toggle() })
})
</script>
<!--Custom JS-->
<script src="assets/js/script.js"></script>
</body>
</html>