-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog-post.html
745 lines (738 loc) · 26.9 KB
/
blog-post.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
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
<title>Craydle</title>
<style>
:root {
--primary: #18244f;
--dark: #0e1636;
--light: #fafafa;
--default: #f1f1f1;
--grey: #8c97ac;
}
/* body {
font-size: 1.2rem;
} */
.text-grey {
color: var(--grey) !important;
}
.bg-primary {
background-color: var(--primary) !important;
}
.text-primary {
color: var(--primary) !important;
}
.bg-light {
background-color: var(--light);
}
.bg-default {
background-color: var(--default);
}
.border-primary,
input,
select,
textarea {
border-color: var(--primary) !important;
}
.btn-outline-primary {
color: var(--primary);
border-color: var(--primary);
}
.btn-outline-primary:hover,
.btn-outline-primary:active {
background-color: var(--primary);
border-color: var(--primary);
}
.btn-primary {
background-color: var(--primary) !important;
border-color: var(--primary) !important;
}
.btn-primary:hover,
.btn-primary:active {
background-color: var(--dark);
border-color: var(--dark);
}
.row {
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 100%;
}
textarea {
resize: none;
}
label {
font-size: 11px;
position: absolute;
top: -7px;
left: 20px;
padding: 0 5px;
background-color: #f7e2d9;
}
.pr-0 {
padding-right: 0 !important;
}
.pl-0 {
padding-left: 0 !important;
}
.text-clip {
text-overflow: clip;
white-space: nowrap;
overflow: hidden;
/* max-width: 100px;
display: inline-block;
vertical-align: middle; */
}
h1 {
font-size: 3.5rem;
}
/* h2 {
font-size: 3rem
} */
h3 {
font-size: 2.2rem;
}
/* h4 {
font-size: 3.5rem
}
h5 {
font-size: 3.5rem
}
h6 {
font-size: 3.5rem
}
p {
}
*/
.fs-14 {
font-size: 14px !important;
}
.card-title {
font-size: 18px;
}
body {
transition: all 0.4s ease 0s;
}
#navbarSupportedContent {
top: 0;
right: -200px;
width: 200px;
position: fixed;
height: 100%;
overflow-y: auto;
z-index: 1000;
transition: all 0.4s ease 0s;
}
body.active,
body.active header {
right: 200px !important;
}
body.active #navbarSupportedContent {
right: 0;
}
@media (max-width: 768px) {
.course-image {
max-height: 200px;
}
}
@media (min-width: 768px) {
.border-md-transparent {
border-color: transparent !important;
}
.pl-md-0 {
padding-left: 0;
}
}
@media (max-width: 1200px) {
.cover-map-with-faces {
position: absolute;
height: 200px;
top: 30%;
right: 10%;
}
.cover-label {
top: -15px;
}
}
</style>
</head>
<body class="container-fluid px-0 text-primary mx-auto position-relative">
<header
class="fixed-top d-flex flex-column flex-lg-row align-items-center p-1 px-lg-4 mb-3 bg-white border-bottom shadow-sm"
>
<nav class="navbar navbar-expand-lg w-100 navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="/"
><img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/logo.png"
/></a>
<div class="d-inline-block d-lg-none">
<button class="btn">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/search.svg"
/>
</button>
<button class="btn btn-primary d-inline-block d-lg-none">
Apply
</button>
<button id="menu-toggle" class="navbar-toggler" type="button">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse justify-content-end">
<ul
class="navbar-nav mb-2 mb-lg-0 col-xl-10 align-items-center justify-content-around"
>
<li class="nav-item">
<a class="nav-link text-reset" href="#">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link text-reset" href="#">Universities</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link text-reset dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Company
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Company</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link text-reset" href="#">Partner with us</a>
</li>
<button class="btn d-lg-inline-block d-none">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/search.svg"
/>
</button>
<button class="btn btn-primary d-lg-inline-block d-none">
Apply Now
</button>
<li class="nav-item d-flex align-items-center">
<div class="btn text-primary">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/phone.svg"
/>
</div>
<div>
<small>Call us 24/7</small>
<h5>+254 700 000 000</h5>
</div>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="" style="margin-top: 72px">
<!-- top section -->
<section class="p-5 pb-0">
<div class="row">
<div class="col-12">
<a class="text-decoration-none" href="/">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/chevron-left.svg"
/> <span class="fs-14" style="color: #8692a6">Homepage</span>
</a>
</div>
</div>
<!-- <br /> -->
</section>
<div class="container">
<!-- cover image section -->
<section class="p-5 pb-4">
<div
class="rounded"
style="
height: 350px;
background-image: url(images/blog-1.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: 50%;
"
></div>
</section>
<!-- title section -->
<section class="px-5 row gx-0">
<div class="col-auto">
<h3 class="pe-md-5">Finibus Bonorum et Malorum  </h3>
<div class="row">
<div class="col-auto pl-0">Written by John doe</div>
<div class="col-auto" style="color: #718096">Monday May 20</div>
</div>
<br />
<hr class="my-3" />
<br />
</div>
</section>
<!-- content section -->
<section class="p-5 pt-0">
<p style="color: #718096">
Section 1.10.32 of "de Finibus Bonorum et Malorum", written by
Cicero in 45 BC "Sed ut perspiciatis unde omnis iste natus error sit
voluptatem accusantium doloremque laudantium, totam rem aperiam,
eaque ipsa quae ab illo inventore veritatis et quasi architecto
beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia
voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur
magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro
quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur,
adipisci velit, sed quia non numquam eius modi tempora incidunt ut
labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad
minima veniam, quis nostrum exercitationem ullam corporis suscipit
laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem
vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil
molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas
nulla pariatur?"
</p>
<p style="color: #718096">
1914 translation by H. Rackham "But I must explain to you how all
this mistaken idea of denouncing pleasure and praising pain was born
and I will give you a complete account of the system, and expound
the actual teachings of the great explorer of the truth, the
master-builder of human happiness. No one rejects, dislikes, or
avoids pleasure itself, because it is pleasure, but because those
who do not know how to pursue pleasure rationally encounter
consequences that are extremely painful. Nor again is there anyone
who loves or pursues or desires to obtain pain of itself, because it
is pain, but because occasionally circumstances occur in which toil
and pain can procure him some great pleasure. To take a trivial
example, which of us ever undertakes laborious physical exercise,
except to obtain some advantage from it? But who has any right to
find fault with a man who chooses to enjoy a pleasure that has no
annoying consequences, or one who avoids a pain that produces no
resultant pleasure?"
</p>
<p style="">
<b><i>Section 1.10.33 of "de Finibus Bonorum et Malorum"</i></b>
</p>
<p style="color: #718096">
"At vero eos et accusamus et iusto odio dignissimos ducimus qui
blanditiis praesentium voluptatum deleniti atque corrupti quos
dolores et quas molestias excepturi sint occaecati cupiditate non
provident, similique sunt in culpa qui officia deserunt mollitia
animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis
est et expedita distinctio. Nam libero tempore, cum soluta nobis est
eligendi optio cumque nihil impedit quo minus id quod maxime placeat
facere possimus, omnis voluptas assumenda est, omnis dolor
repellendus. Temporibus autem quibusdam et aut officiis debitis aut
rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint
et molestiae non recusandae. Itaque earum rerum hic tenetur a
sapiente delectus, ut aut reiciendis voluptatibus maiores alias
consequatur aut perferendis doloribus asperiores repellat."
</p>
<br />
<h4>Section</h4>
<p style="color: #718096">
"At vero eos et accusamus et iusto odio dignissimos ducimus qui
blanditiis praesentium voluptatum deleniti atque corrupti quos
dolores et quas molestias excepturi sint occaecati cupiditate non
provident, similique sunt in culpa qui officia deserunt mollitia
animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis
est et expedita distinctio. Nam libero tempore, cum soluta nobis est
eligendi optio cumque nihil impedit quo minus id quod maxime placeat
facere possimus, omnis voluptas assumenda est, omnis dolor
repellendus. Temporibus autem quibusdam et aut officiis debitis aut
rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint
et molestiae non recusandae. Itaque earum rerum hic tenetur a
sapiente delectus, ut aut reiciendis voluptatibus maiores alias
consequatur aut perferendis doloribus asperiores repellat."
</p>
<br />
<h4>Section 1.10.33</h4>
<p style="color: #718096">
"At vero eos et accusamus et iusto odio dignissimos ducimus qui
blanditiis praesentium voluptatum deleniti atque corrupti quos
dolores et quas molestias excepturi sint occaecati cupiditate non
provident, similique sunt in culpa qui officia deserunt mollitia
animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis
est et expedita distinctio. Nam libero tempore, cum soluta nobis est
eligendi optio cumque nihil impedit quo minus id quod maxime placeat
facere possimus, omnis voluptas assumenda est, omnis dolor
repellendus. Temporibus autem quibusdam et aut officiis debitis aut
rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint
et molestiae non recusandae. Itaque earum rerum hic tenetur a
sapiente delectus, ut aut reiciendis voluptatibus maiores alias
consequatur aut perferendis doloribus asperiores repellat."
</p>
</section>
</div>
<div class="bg-default">
<!-- posts row section -->
<section class="p-5 container">
<div class="row">
<h3 class="col">Related articles</h3>
</div>
<br />
<div
class="row row-cols-1 row-cols-md-2 row-cols-lg-3 row-cols-xl-3 gy-3"
>
<div class="col">
<div class="card shadow-sm h-100">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/blog-2.jpg"
class="card-img-top"
/>
<div class="card-body">
<h6 class="fs-14">COVID 19 Update</h6>
<h5 style="height: 48px">
Live Updates: Coronavirus and Higher Education
</h5>
<p class="" style="color: #718096">
It is a long established fact that a reader will be
distracted by the readable content of a page when looking at
its layout. The point of using Lorem Ipsum is that....
</p>
<br />
<div
class="row gx-0 justify-content-between align-items-center"
>
<small class="col-auto" style="color: #718096"
>May 20th 2020</small
>
<a
href="#"
class="col-auto text-decoration-none text-reset fw-bold"
>Read More</a
>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm h-100">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/blog-3.jpg"
class="card-img-top"
/>
<div class="card-body">
<h6 class="fs-14" style="color: #ff5656">
UNICAF Scholarships
</h6>
<h5 style="height: 48px">Long Established</h5>
<p class="" style="color: #718096">
It is a long established fact that a reader will be
distracted by the readable content of a page when looking at
its layout. The point of using Lorem Ipsum is that....
</p>
<br />
<div
class="row gx-0 justify-content-between align-items-center"
>
<small class="col-auto" style="color: #718096"
>May 20th 2020</small
>
<a
href="#"
class="col-auto text-decoration-none text-reset fw-bold"
>Read More</a
>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm h-100">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/blog-4.jpg"
class="card-img-top"
/>
<div class="card-body">
<h6 class="fs-14">Applications</h6>
<h5 style="height: 48px">Long Established</h5>
<p class="" style="color: #718096">
It is a long established fact that a reader will be
distracted by the readable content of a page when looking at
its layout. The point of using Lorem Ipsum is that....
</p>
<br />
<div
class="row gx-0 justify-content-between align-items-center"
>
<small class="col-auto" style="color: #718096"
>May 20th 2020</small
>
<a
href="#"
class="col-auto text-decoration-none text-reset fw-bold"
>Read More</a
>
</div>
</div>
</div>
</div>
</div>
<br />
</section>
</div>
</main>
<footer class="text-white">
<section class="row py-4 p-md-5 p-2 position-relative bg-primary">
<div class="col-12 col-md-3">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/logo-white.png"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/left-intersect.svg"
class="position-absolute d-none d-md-block"
style="left: 0; bottom: 0; height: calc(100% - 3rem)"
/>
</div>
<div class="col-12 col-md-6 order-1 order-md-0">
<div class="row">
<div class="col-6 col-md">
<h6>Company</h6>
<ul class="list-unstyled text-small footer-links">
<li>
<a class="text-reset text-decoration-none" href="#"
>About Us</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Contact</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Careers</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Terms & Conditions</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Privacy Policy</a
>
</li>
</ul>
</div>
<div class="col-6 col-md">
<h6>For Students</h6>
<ul class="list-unstyled text-small footer-links">
<li>
<a class="text-reset text-decoration-none" href="#"
>Courses</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Universities</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#">Blog</a>
</li>
</ul>
</div>
<div class="col-6 col-md">
<h6>For Universities</h6>
<ul class="list-unstyled text-small footer-links">
<li>
<a class="text-reset text-decoration-none" href="#"
>Become a Partner</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Request an Update</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Customer Support</a
>
</li>
</ul>
</div>
<div
class="col-6 d-flex justify-content-around d-md-none align-items-start"
>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/facebook.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/twitter.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/youtube.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/instagram.svg"
/>
</div>
<div class="col-12 d-block d-md-none">
<div class="btn-group">
<button
type="button"
class="btn text-white dropdown-toggle"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/kenya.svg"
/>
Kenya
</button>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="#"
><img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/kenya.svg"
/>
Kenya</a
>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-12 col-md order-0 order-md-1">
<h6>Stay Updated</h6>
<div class="input-group input-group-lg mb-3">
<input
style="font-size: 14px"
class="form-control p-4 border-0"
placeholder="Stay in the loop - drop us your email"
aria-label="Stay in the loop - drop us your email"
aria-describedby="basic-addon2"
/>
<span class="input-group-text pr-4 bg-white" id="basic-addon2"
><button class="btn btn-primary">Subscribe</button></span
>
</div>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/right-intersect.svg"
class="position-absolute d-none d-md-block"
style="right: 0; top: 0; height: calc(100% - 6rem)"
/>
</div>
</section>
<section
class="row align-items-center w-100 mx-auto py-2"
style="background-color: var(--dark)"
>
<div class="col col-md-2 d-none d-md-block">
<div class="btn-group">
<button
type="button"
class="btn text-white dropdown-toggle"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/kenya.svg"
/>
Kenya
</button>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="#"
><img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/kenya.svg"
/>
Kenya</a
>
</li>
</ul>
</div>
</div>
<div class="col-12 col-md text-center text-md-start">
© Copyright 2020 | All Rights Reserved
</div>
<div
class="col col-md-3 col-lg-2 d-md-flex justify-content-around d-none"
>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/facebook.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/twitter.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/youtube.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/instagram.svg"
/>
</div>
</section>
</footer>
<ul class="navbar-nav h-100 p-4" id="navbarSupportedContent">
<li class="nav-item">
<a class="nav-link text-reset" href="#">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link text-reset" href="#">Universities</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link text-reset dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Company
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Company</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link text-reset" href="#">Partner with us</a>
</li>
<button class="btn d-lg-inline-block d-none">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/search.svg"
/>
</button>
<button class="btn btn-primary d-lg-inline-block d-none">
Apply Now
</button>
<li class="nav-item d-flex align-items-center">
<div class="btn text-primary">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/phone.svg"
/>
</div>
<div>
<small>Call us 24/7</small>
<h5>+254 700 000 000</h5>
</div>
</li>
</ul>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"
></script>
<script>
document
.querySelector("#menu-toggle")
.addEventListener("click", function (e) {
e.preventDefault();
document.querySelector("body").classList.toggle("active");
});
</script>
</body>
</html>