-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
561 lines (548 loc) · 34.1 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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> RepubLikha PH </title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="srcs/style.css">
<link rel="shortcut icon" href="srcs/pictures/logo.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz@8..144&family=Roboto+Mono:wght@400&family=Roboto+Slab&display=swap" rel="stylesheet">
</head>
<body>
<!-- NAVIGATION BAR -->
<div class="nav_bar">
<nav class="navbar navbar-expand-lg bg-body-tertiary" style="background-color: #FEB341 !important;">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="srcs/pictures/repubLikha_cover.png">
</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 active" aria-current="page" href="#container_landingpage">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#arts">Arts</a>
</li>
<!--<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Arts
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#graphics">Graphical Works</a></li>
<li><a class="dropdown-item" href="#artworks_logos">Logos</a></li>
<li><a class="dropdown-item" href="#">NFT</a></li>
<li><a class="dropdown-item" href="#">Portrait</a></li>
<li><a class="dropdown-item" href="#">Others</a></li>
</ul>
</li>-->
<li class="nav-item">
<a class="nav-link" href="#rates">Rates</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-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
</div>
<!-- LANDING PAGE -->
<div id="container_landingpage" class="container_landingpage">
<img id="landingpage_bg" src="srcs/pictures/cover.gif">
<button id="availcommish_btn" type="button" class="btn btn-primary" onclick="window.open('https://forms.gle/YSx6z28AJxQxDcw86', '_blank')">
<i class="fa-solid fa-bag-shopping"></i>
Avail Commission Now!
</button>
</div>
<!-- CONTAINER -->
<div class="container">
<!-- TAGLINES -->
<div class="taglines">
<div class="icon_circle">
<i class="fa-solid fa-palette icon"></i>
<p> malikhain </p>
</div>
<div class="icon_circle">
<i class="fa-solid fa-check icon"></i>
<p> mahusay </p>
</div>
<div class="icon_circle">
<i class="fa-solid fa-handshake icon"></i>
<p> makamasa </p>
</div>
</div>
<h1> About </h1>
<!-- CONTAINER ABOUT -->
<div id="about" class="about">
<div class="about_grid">
<div class="left">
<div class="content">
<img src="srcs/pictures/logo.png">
<div>
<h2> RepubLikha PH </h2>
<div>
<a href="https://www.instagram.com/republikha_ph" target="_blank">
<i class="fab fa-instagram icon"></i> </a>
<i class="fas fa-envelope icon"></i>
</div>
<p> A commission-based graphical art center in the Philippines.
It’s name is a combination of Likha, a Filipino term for work of art.
And Republika that represents the Philippines.
We aim to deliver graphical arts that is not just aesthetically crafted, but is also budget-friendly, and accurate.</p>
</div>
</div>
<div>
<video width="700" height="420" autoplay muted controls>
<source src="srcs/pictures/RepubLikha_VideoPromotion.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<div class="right">
<img src="srcs/pictures/artist.png">
<div>
<div>
<h2> Aira Estur </h2>
<div>
<a href="https://www.facebook.com/aira.estur/" target="_blank">
<i class="fab fa-facebook icon"></i> </a>
<a href="https://www.instagram.com/airacaughton4k" target="_blank">
<i class="fab fa-instagram icon"></i> </a>
<a href="https://twitter.com/airacaughton4k" target="_blank">
<i class="fab fa-twitter icon"></i> </a>
<a href="https://github.com/aira-E" target="_blank">
<i class="fab fa-github icon"></i> </a>
<a href="https://www.linkedin.com/in/airaestur/" target="_blank">
<i class="fab fa-linkedin icon"></i> </a>
<a href="https://www.youtube.com/channel/UCoz7H25-gsQgh0AaolDmSew" target="_blank">
<i class="fab fa-youtube icon"></i> </a>
</div>
<p> The artist of RepubLikha PH, who loves creating music, arts, and everything nice is currently a Computer Engineering Student in Polytechnic University of the Philippines.</p>
</div>
<div class="content_footer">
<p> https://aira-e.github.io/Portfolio/ </p>
<p> Let's work together: Airaestur@gmail.com </p>
</div>
</div>
</div>
</div>
</div>
<!-- TERMS AND CONDITIONS -->
<div class="tnc">
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#staticBackdrop">
<i class="fa-solid fa-pencil"></i>
Terms and conditions
</button>
<!-- Modal -->
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel"> Terms and Conditions </h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<h6> Last Revised: January 2023 </h6>
<p> Mabuhay ang Republikha PH! This art center provides a service and products to our clients and may be used for in informational and promotional purposes only.. Because the Terms and Conditions contain legal obligations, please read them carefully. </p>
<h5> Artist’s Reservations: </h5>
<p><ol>
<li> Artist may decline a project </li>
<li> Artists have the right to put a signature/watermark on the project except for logo commissions. </li>
<li> Artists may use the artwork for a portfolio, website, and for other marketing purposes.</li>
<li> Artists must state a minimum price to the maximum price of the project.</li>
</ol></p>
<h5> Client’s Reservations: </h5>
<p><ol>
<li> Client may note their requests before the progress. </li>
<li> Client may ask for minor changes.</li>
<li> Client must state how much is his budget for the commission. </li>
<li> Client can choose between paying half or full before the start of the commission.</li>
<li> Client may request the artist to post the artwork at a certain date but cannot ask to not post the artwork or use it for any promotional matters at all. </li>
</ol></p>
<h5> Rendering Reservations: </h5>
<p><ol>
<li> Client’s expectation for the quality is also depending on the:
<ol type="a">
<li> Client’s reference (Client’s Reference must be precise or clear) </li>
<li> Time Rendering Allowance (Time allocation should be attainable) </li>
</ol>
</li>
<li> No cancellation of commission if the artwork is 50% progress or up. </li>
<li> Artist will send sketches to the client. And will only start the commission if both parties agree to the arranged layout and price. </li>
<li> Clients will receive 2 pictures. First, the fully rendered artwork. Second, the artwork without background. </li>
<li> These are the grounds for the termination of the commission:
<ol type="a">
<li> If the client didn’t communicate for up to 30days. </li>
</ol>
</li>
</ol></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-bs-dismiss="modal" >Accept</button>
</div>
</div>
</div>
</div>
</div>
<!-- FAQS -->
<div class="faqs">
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
<i class="fa-solid fa-question"></i>
FAQs
</button>
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel">Modal title</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
</div>
<!-- FEATURES -->
<div class="features">
<h3> Art that tells story </h3>
<div class="art_that_tells_story_carousel">
<div id="carouselExampleIndicators" class="carousel slide">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="srcs/pictures/features/feature1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="srcs/pictures/features/feature2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="srcs/pictures/features/feature3.jpg" class="d-block w-100" alt="...">
</div>
</div>
<div class="carousel_buttons">
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators" 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="#carouselExampleIndicators" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
</div>
<div class="content_sendletter">
<a href="https://forms.gle/39CeU2BPjLpxZ2Lt7" target="_blank">
<i class="fa-regular fa-envelope-open icon"></i>
<p class="inline">Wanna get featured? Send us a letter!</p>
</a>
</div>
<!-- CONTAINER_TESTIMONIAL -->
<!--<div class="container_testimonials">
<h3> Testimonials </h3>
</div>-->
<!-- CONTAINER_ARTS-->
<div id="arts" class="container_arts">
<div class="artworks" id="artworks">
<h1> Arts </h1>
<p> Mabuhay ang RepubLikha ng Pilipinas !
Step into a world of creativity, expression, and inspiration.
Our Art Gallery is a vibrant space where art comes to life, and artists' visions take center stage.
Feel free to appreciate and share our works, as we celebrate Likhang Pinoy! </p>
<nav class="artworks_nav">
<div class="nav nav-tabs" id="nav-tab" role="tablist">
<button class="nav-link" id="nav-graphics-tab" data-bs-toggle="tab"
data-bs-target="#nav-graphics" type="button" role="tab" aria-controls="nav-graphics"
aria-selected="false"> Graphical Works </button>
<button class="nav-link" id="nav-logos-tab" data-bs-toggle="tab"
data-bs-target="#nav-logos" type="button" role="tab" aria-controls="nav-logos"
aria-selected="false"> Logos </button>
<button class="nav-link" id="nav-nfts-tab" data-bs-toggle="tab"
data-bs-target="#nav-nfts" type="button" role="tab" aria-controls="nav-nfts"
aria-selected="false"> NFT </button>
<!--<button class="nav-link" id="nav-photographs-tab" data-bs-toggle="tab"
data-bs-target="#nav-photographs" type="button" role="tab" aria-controls="nav-photograps"
aria-selected="false"> Photography </button> -->
<button class="nav-link active" id="nav-portraits-tab" data-bs-toggle="tab"
data-bs-target="#nav-portraits" type="button" role="tab" aria-controls="nav-portraits"
aria-selected="true"> Portrait </button>
<!-- <button class="nav-link" id="nav-videographs-tab" data-bs-toggle="tab"
data-bs-target="#nav-videographs" type="button" role="tab" aria-controls="nav-videographs"
aria-selected="false"> Videography </button>-->
<button class="nav-link" id="nav-others-tab" data-bs-toggle="tab"
data-bs-target="#nav-others" type="button" role="tab" aria-controls="nav-others"
aria-selected="false"> Others </button>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade p-3" id="nav-graphics" role="tabpanel"
aria-labelledby="nav-graphics-tab">
<div id="graphics" class="content">
<img src="srcs/pictures/artworks/graphics/1.png" alt="Typography-3d">
<img src="srcs/pictures/artworks/graphics/2.jpg" alt="Poster-VirtualSinger">
<img src="srcs/pictures/artworks/graphics/4.jpg" alt="Brochure-DrugAbuse">
<img src="srcs/pictures/artworks/graphics/3.png" alt="Poster-NominationNight">
</div>
</div>
<div class="tab-pane fade p-3" id="nav-logos" role="tabpanel"
aria-labelledby="nav-logos-tab">
<div id="artworks_logos" class="content">
<img src="srcs/pictures/artworks/logos/1.png" alt="SKLogo-Brgy.Binosawan">
<img src="srcs/pictures/artworks/logos/2.png" alt="KennelLogo-GreatWoofer">
<img src="srcs/pictures/artworks/logos/3.png" alt="BasketballTeamLogo-Cattleya">
<img src="srcs/pictures/artworks/logos/4.png" alt="E-BusinessLogo-EsturEstore">
</div>
</div>
<div class="tab-pane fade p-3" id="nav-nfts" role="tabpanel"
aria-labelledby="nav-nfts-tab">
<div class="content">
<img src="srcs/pictures/artworks/nfts/1.png" alt="thequeen">
<img src="srcs/pictures/artworks/nfts/2.png" alt="tupacshakur">
<img src="srcs/pictures/artworks/nfts/3.png" alt="cyberpunk">
<img src="srcs/pictures/artworks/nfts/4.png" alt="francism">
<img src="srcs/pictures/artworks/nfts/5.png" alt="juicewrld">
</div>
</div>
<div class="tab-pane fade show active p-3" id="nav-portraits" role="tabpanel"
aria-labelledby="nav-portraits-tab">
<div class="content">
<img src="srcs/pictures/artworks/portraits/1.png" alt="louisebanez">
<img src="srcs/pictures/artworks/portraits/3.png" alt="dogfampicture">
<img src="srcs/pictures/artworks/portraits/2.png" alt="mr&mrsbanez">
<img src="srcs/pictures/artworks/portraits/4.png" alt="lunaportrait">
</div>
</div>
<div class="tab-pane fade show p-3" id="nav-others" role="tabpanel"
aria-labelledby="nav-others-tab">
<div class="content">
<img src="srcs/pictures/artworks/others/1.jpg" alt="10by10frame">
<img src="srcs/pictures/artworks/others/2.jpg" alt="framepacking">
<img src="srcs/pictures/artworks/others/3.jpg" alt="frames">
<img src="srcs/pictures/artworks/others/4.jpg" alt="8by8frame">
</div>
</div>
</div>
</div>
</div>
<!-- RATES -->
<div id="rates" class="container_rates">
<h1> Rates </h1>
<h6> NOTICE </h6>
<div class="content">
<p> availing RepubLikha PH commissions also means agreeing to its </p>
<div class="tnc">
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#staticBackdrop">
<i class="fa-solid fa-pencil"></i>
Terms and conditions
</button>
<!-- Modal -->
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel"> Terms and Conditions </h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<h6> Last Revised: January 2023 </h6>
<p> Mabuhay ang Republikha PH! This art center provides a service and products to our clients and may be used for in informational and promotional purposes only.. Because the Terms and Conditions contain legal obligations, please read them carefully. </p>
<h5> Artist’s Reservations: </h5>
<p><ol>
<li> Artist may decline a project </li>
<li> Artists have the right to put a signature/watermark on the project except for logo commissions. </li>
<li> Artists may use the artwork for a portfolio, website, and for other marketing purposes.</li>
<li> Artists must state a minimum price to the maximum price of the project.</li>
</ol></p>
<h5> Client’s Reservations: </h5>
<p><ol>
<li> Client may note their requests before the progress. </li>
<li> Client may ask for minor changes.</li>
<li> Client must state how much is his budget for the commission. </li>
<li> Client can choose between paying half or full before the start of the commission.</li>
<li> Client may request the artist to post the artwork at a certain date but cannot ask to not post the artwork or use it for any promotional matters at all. </li>
</ol></p>
<h5> Rendering Reservations: </h5>
<p><ol>
<li> Client’s expectation for the quality is also depending on the:
<ol type="a">
<li> Client’s reference (Client’s Reference must be precise or clear) </li>
<li> Time Rendering Allowance (Time allocation should be attainable) </li>
</ol>
</li>
<li> No cancellation of commission if the artwork is 50% progress or up. </li>
<li> Artist will send sketches to the client. And will only start the commission if both parties agree to the arranged layout and price. </li>
<li> Clients will receive 2 pictures. First, the fully rendered artwork. Second, the artwork without background. </li>
<li> These are the grounds for the termination of the commission:
<ol type="a">
<li> If the client didn’t communicate for up to 30days. </li>
</ol>
</li>
</ol></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-bs-dismiss="modal" >Accept</button>
</div>
</div>
</div>
</div>
</div>
</div>
<p class="card-text"><small class="text-body-secondary">This is the base/starting price only</small></p>
<!-- CARD RATES -->
<div class="container_card">
<div class="card" style="width: 18rem;">
<div class="container_container_icon">
<div class="container_icon">
<i class="fa-solid fa-play icon"></i>
</div>
</div>
<h5 class="card-title"> Videos </h5>
<div class="card-body">
<p class="card-text">
<h1 class="rate_price"> ₱500 </h1>
<ul>
<li> With Watermark </li>
<li> Less than 1min. - 2min. is the base lenght </li>
<li> Raw files must be given/discussed by the client </li>
</ul>
</p>
</div>
</div>
<div class="card" style="width: 18rem;">
<div class="container_container_icon">
<div class="container_icon">
<i class="fa-solid fa-pen icon"></i>
</div>
</div>
<h5 class="card-title"> Graphical Works </h5>
<div class="card-body">
<p class="card-text">
<ul>
<h1 class="rate_price"> ₱300 </h1>
<li> Without Watermark </li>
<li> Sketches before Rendering </li>
<li> Raw files could be given </li>
</ul>
</p>
</div>
</div>
<div class="card" style="width: 18rem;">
<div class="container_container_icon">
<div class="container_icon">
<i class="fa-solid fa-vector-square icon"></i>
</div>
</div>
<h5 class="card-title"> Logos </h5>
<div class="card-body">
<p class="card-text">
<h1 class="rate_price"> ₱800 </h1>
<ul>
<li> Without Watermark </li>
<li> PNG & JPG File Provided </li>
<li> Sketches before rendering </li>
</ul>
</p>
</div>
</div>
<div class="card" style="width: 18rem;">
<div class="container_container_icon">
<div class="container_icon">
<i class="fa-solid fa-user icon"></i>
</div>
</div>
<h5 class="card-title"> Portraits </h5>
<div class="card-body">
<p class="card-text">
<h1 class="rate_price"> ₱500 </h1>
<ul>
<li> One-color and Skin-color Scheme </li>
<li> Head to Full Body Shot </li>
<li> Fix square size </li>
<li> Additional fee to frame </li>
</ul>
</p>
</div>
</div>
</div>
<div class="container_getyours">
<h3> GET YOURS NOW! </h3>
<button id="avail_btn" type="button" class="btn btn-primary" onclick="window.open('https://forms.gle/YSx6z28AJxQxDcw86', '_blank')">
<i class="fa-solid fa-bag-shopping"></i>
Avail
</button>
</div>
</div>
</div>
<!-- FOOTER -->
<footer>
<img src="srcs/pictures/logo-square.png" alt="">
<!-- NAVIGATION PANE -->
<div class="navpane">
<a href="#about"> About </a>
<a href="#arts"> Arts </a>
<a href="#rates"> Rates </a>
</div>
<div class="container_copyright">
<div class="copyright">
<i class="fa-solid fa-copyright"></i>
<h3> ALL RIGHTS RESERVED 2024 </h3>
</div>
</div>
<!-- GET IN TOUCH SECTION-->
<div class="getintouch">
<h6> Get in Touch </h6>
<div class="content">
<i class="fa-solid fa-map-pin icon"></i>
<p> Caloocan City, Philippines </p>
</div>
<div class="content">
<i class="fa-solid fa-phone icon"></i>
<p> 0966-579-5845 </p>
</div>
<div class="content">
<i class="fa-solid fa-envelope icon"></i>
<p> ph.republikha@gmail.com </p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy" crossorigin="anonymous"></script>
<!-- Script for Carousel's Autoplay -->
<script>
document.addEventListener('DOMContentLoaded', function() {
var carousel = document.querySelector('#carouselExampleIndicators');
var carouselInstance = new bootstrap.Carousel(carousel, {
interval: 4000, // Adjust the interval value (in milliseconds) to change the autoplay speed
pause: 'hover', // Pause on mouse hover
ride: 'carousel', // Autoplay mode
wrap: true // Loop the carousel
});
});
</script>
</body>
</html>