-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1040 lines (1012 loc) · 45.4 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
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
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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>Sanudin 💖 Nurfauziah - 08.06.2024</title>
<meta
name="description"
content="Pernikahan Sanudin & Nurfauziah - 08 Juni 2024 11:00 WIB. Mohon do'anya. 🙏"
/>
<meta
name="keywords"
content="sanudin,nurfauziah,ziah,puji,wedding,website,bootstrap"
/>
<meta name="author" content="Sanudin & Nurfauziah" />
<!-- Facebook and Twitter integration -->
<meta property="og:image" content="images/og.png" />
<meta property="og:site_name" content="Sanudin & Nurfauziah - 08.06.2024" />
<meta property="og:title" content="Sanudin & Nurfauziah - 08.06.2024" />
<meta
property="og:description"
content="Pernikahan Sanudin & Nurfauziah - 08 Juni 2024 11:00 WIB. Mohon do'anya. 🙏"
/>
<!-- Size of image. Any size up to 300. Anything above 300px will not work in WhatsApp -->
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<!-- Website to visit when clicked in fb or WhatsApp-->
<meta property="og:url" content="https://ziah.sanud.in" />
<meta property="og:type" content="website" />
<meta property="og:image:type" content="image/jpeg" />
<link rel="icon" href="favicon.ico" />
<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=Engagement&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap"
rel="stylesheet"
/>
<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="css/style.min.css" />
</head>
<body class="overflow-hidden">
<div class="spinner-wrapper position-fixed">
<div
class="d-flex justify-content-center align-items-center flex-column w-100 h-100"
>
<div class="spinner-border text-info"></div>
<strong role="status">Loading...</strong>
</div>
</div>
<nav
class="navigation position-fixed bottom-0 start-50 translate-middle px-2 col-12 col-sm-10 col-md-8 col-lg-6 col-xl-5 col-xxl-4"
>
<div
class="container text-center px-3 px-sm-4 py-3 bg-danger-subtle border border-danger rounded-3 shadow"
>
<div class="row align-items-center">
<div class="col nav-home p-0">
<a
href="#home"
class="btn btn-outline-danger border-0 pb-0 d-flex flex-column align-items-center"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"
width="24"
height="24"
>
<path
fill="currentColor"
d="M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c0 2.7-.2 5.4-.5 8.1V472c0 22.1-17.9 40-40 40H456c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1H416 392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z"
/>
</svg>
<span>Home</span>
</a>
</div>
<div class="col nav-events p-0">
<a
href="#events"
class="btn btn-outline-danger border-0 pb-0 d-flex flex-column align-items-center"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="24"
height="24"
>
<path
fill="currentColor"
d="M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm64 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H336zM64 400v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H208zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z"
/>
</svg>
<span>Events</span>
</a>
</div>
<div class="col nav-our-story p-0">
<a
href="#our-story"
class="btn btn-outline-danger border-0 pb-0 d-flex flex-column align-items-center"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
width="24"
height="24"
>
<path
fill="currentColor"
d="M228.3 469.1L47.6 300.4c-4.2-3.9-8.2-8.1-11.9-12.4h87c22.6 0 43-13.6 51.7-34.5l10.5-25.2 49.3 109.5c3.8 8.5 12.1 14 21.4 14.1s17.8-5 22-13.3L320 253.7l1.7 3.4c9.5 19 28.9 31 50.1 31H476.3c-3.7 4.3-7.7 8.5-11.9 12.4L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9zM503.7 240h-132c-3 0-5.8-1.7-7.2-4.4l-23.2-46.3c-4.1-8.1-12.4-13.3-21.5-13.3s-17.4 5.1-21.5 13.3l-41.4 82.8L205.9 158.2c-3.9-8.7-12.7-14.3-22.2-14.1s-18.1 5.9-21.8 14.8l-31.8 76.3c-1.2 3-4.2 4.9-7.4 4.9H16c-2.6 0-5 .4-7.3 1.1C3 225.2 0 208.2 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141C165 36.5 211.4 51.4 244 84l12 12 12-12c32.6-32.6 79-47.5 124.6-39.9C461.5 55.6 512 115.2 512 185.1v5.8c0 16.9-2.8 33.5-8.3 49.1z"
/>
</svg>
<span>Story</span>
</a>
</div>
<div class="col nav-gallery p-0">
<a
href="#gallery"
class="btn btn-outline-danger border-0 pb-0 d-flex flex-column align-items-center"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"
width="24"
height="24"
>
<path
fill="currentColor"
d="M160 80H512c8.8 0 16 7.2 16 16V320c0 8.8-7.2 16-16 16H490.8L388.1 178.9c-4.4-6.8-12-10.9-20.1-10.9s-15.7 4.1-20.1 10.9l-52.2 79.8-12.4-16.9c-4.5-6.2-11.7-9.8-19.4-9.8s-14.8 3.6-19.4 9.8L175.6 336H160c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16zM96 96V320c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V344c0 75.1 60.9 136 136 136H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88V120zm208 24a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"
/>
</svg>
<span>Gallery</span>
</a>
</div>
<div class="col nav-wishes p-0">
<a
href="#wishes"
class="btn btn-outline-danger border-0 pb-0 d-flex flex-column align-items-center"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"
width="24"
height="24"
>
<path
fill="currentColor"
d="M163.9 136.9c-29.4-29.8-29.4-78.2 0-108s77-29.8 106.4 0l17.7 18 17.7-18c29.4-29.8 77-29.8 106.4 0s29.4 78.2 0 108L310.5 240.1c-6.2 6.3-14.3 9.4-22.5 9.4s-16.3-3.1-22.5-9.4L163.9 136.9zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z"
/>
</svg>
<span>Wishes</span>
</a>
</div>
</div>
</div>
</nav>
<section id="home" class="hero">
<div class="pt-5 text-center h-100 overlay">
<div class="row h-100 m-0">
<div class="container p-5 pb-3 text-white col align-self-center">
<p class="h5">The Wedding of</p>
<h1
class="title display-1"
data-bs-toggle="tooltip"
data-bs-title="Sanudin & Nurfauziah"
>
Sanudin & Nurfauziah
</h1>
<img
src="images/fprint.png"
class="img-fluid my-3"
alt="Fingerprint Love"
/>
<h2 class="title h4">08.06.2024</h2>
<p class="col-lg-8 mx-auto lead mb-4">
"Di antara tanda-tanda (kebesaran)-Nya ialah bahwa Dia menciptakan
pasangan-pasangan untukmu dari (jenis) dirimu sendiri agar kamu
merasa tenteram kepadanya. Dia menjadikan di antaramu rasa cinta
dan kasih sayang. Sesungguhnya pada yang demikian itu benar-benar
terdapat tanda-tanda (kebesaran Allah) bagi kaum yang berpikir."
<br />(Ar-Rum: 21)
</p>
</div>
</div>
<div id="countdown-timer" class="pb-5 px-2">
<div class="container text-center">
<div class="row align-items-center justify-content-center">
<div class="col-3 col-md-2 col-xl-1 px-1 px-md-2">
<div class="card text-bg-danger">
<div class="card-body">
<h5 class="card-title h2" id="days">0</h5>
<h6 class="card-subtitle mb-2">Hari</h6>
</div>
</div>
</div>
<div class="col-3 col-md-2 col-xl-1 px-1 px-md-2">
<div class="card text-bg-danger">
<div class="card-body">
<h5 class="card-title h2" id="hours">0</h5>
<h6 class="card-subtitle mb-2">Jam</h6>
</div>
</div>
</div>
<div class="col-3 col-md-2 col-xl-1 px-1 px-md-2">
<div class="card text-bg-danger">
<div class="card-body">
<h5 class="card-title h2" id="minutes">0</h5>
<h6 class="card-subtitle mb-2">Menit</h6>
</div>
</div>
</div>
<div class="col-3 col-md-2 col-xl-1 px-1 px-md-2">
<div class="card text-bg-danger">
<div class="card-body">
<h5 class="card-title h2" id="seconds">0</h5>
<h6 class="card-subtitle mb-2">Detik</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="events" class="events">
<div class="p-5 text-center">
<h2 class="title display-4 mb-3">Events</h2>
<div class="mb-5 text-center to-wrapper d-none">
<div class="row align-items-center justify-content-center">
<div
class="h-100 px-4 py-3 bg-body-tertiary border rounded-3 col-12 col-lg-5 col-xl-4 m-2"
>
<h3 class="h5">Kepada Yth. Bapak/Ibu/Saudara/I</h3>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="24"
height="24"
>
<path
fill="#828282"
d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z"
/>
</svg>
<p class="h4 mt-2">
<b id="to-name"></b>
</p>
</div>
</div>
<div class="text-center mt-3">
<h3 class="title h3">Assalamu'alaikum Warahmatullah Wabarakatuh</h3>
<p class="h5">
Maha suci Allah yang telah menciptakan makhluk-Nya
berpasang-pasangan. <br />Ya Allah perkenankanlah kami untuk
mengikuti Sunnah Rasul-Mu dalam rangka membentuk keluarga yang
<b>sakinah, mawaddah, warahmah</b>
</p>
</div>
</div>
<div class="row align-items-center justify-content-center">
<div
class="h-100 p-4 pt-3 bg-body-tertiary border rounded-3 col-12 col-lg-5 col-xl-4 m-2"
>
<h3 class="h4">Akad Nikah</h3>
<hr />
<div class="row">
<div class="col-6">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="24"
height="24"
>
<path
fill="#828282"
d="M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm64 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H336zM64 400v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H208zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z"
/>
</svg>
<p class="h5">Sabtu, 08 Juni 2024</p>
</div>
<div class="col-6">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
width="24"
height="24"
>
<path
fill="#828282"
d="M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z"
/>
</svg>
<p class="h5">11:00 WIB - Selesai</p>
</div>
</div>
<p class="h5">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"
width="24"
height="24"
>
<path
fill="#828282"
d="M408 120c0 54.6-73.1 151.9-105.2 192c-7.7 9.6-22 9.6-29.6 0C241.1 271.9 168 174.6 168 120C168 53.7 221.7 0 288 0s120 53.7 120 120zm8 80.4c3.5-6.9 6.7-13.8 9.6-20.6c.5-1.2 1-2.5 1.5-3.7l116-46.4C558.9 123.4 576 135 576 152V422.8c0 9.8-6 18.6-15.1 22.3L416 503V200.4zM137.6 138.3c2.4 14.1 7.2 28.3 12.8 41.5c2.9 6.8 6.1 13.7 9.6 20.6V451.8L32.9 502.7C17.1 509 0 497.4 0 480.4V209.6c0-9.8 6-18.6 15.1-22.3l122.6-49zM327.8 332c13.9-17.4 35.7-45.7 56.2-77V504.3L192 449.4V255c20.5 31.3 42.3 59.6 56.2 77c20.5 25.6 59.1 25.6 79.6 0zM288 152a40 40 0 1 0 0-80 40 40 0 1 0 0 80z"
/>
</svg>
<br />Kediaman Mempelai Wanita <br />
<b>Dusun Tulang Kacang RT01/01 Ds. Arjasari Patrol - Indramayu</b>
</p>
<a
href="https://maps.app.goo.gl/xShCKFnpNNnu2LYEA"
class="btn btn-danger mt-3"
target="_blank"
rel="noopener noreferrer"
><span class="h4 pe-1">Buka Maps</span>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="24"
height="24"
>
<path
fill="#fff"
d="M429.6 92.1c4.9-11.9 2.1-25.6-7-34.7s-22.8-11.9-34.7-7l-352 144c-14.2 5.8-22.2 20.8-19.3 35.8s16.1 25.8 31.4 25.8H224V432c0 15.3 10.8 28.4 25.8 31.4s30-5.1 35.8-19.3l144-352z"
/>
</svg>
</a>
</div>
<div
class="h-100 p-4 pt-3 bg-body-tertiary border rounded-3 col-12 col-lg-5 col-xl-4 m-2"
>
<h3 class="h4">Resepsi <i>(Masih rencana)</i></h3>
<hr />
<div class="row">
<div class="col-6">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="24"
height="24"
>
<path
fill="#828282"
d="M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm64 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H336zM64 400v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H208zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z"
/>
</svg>
<p class="h5">-</p>
</div>
<div class="col-6">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
width="24"
height="24"
>
<path
fill="#828282"
d="M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z"
/>
</svg>
<p class="h5">-</p>
</div>
</div>
<p class="h5">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"
width="24"
height="24"
>
<path
fill="#828282"
d="M408 120c0 54.6-73.1 151.9-105.2 192c-7.7 9.6-22 9.6-29.6 0C241.1 271.9 168 174.6 168 120C168 53.7 221.7 0 288 0s120 53.7 120 120zm8 80.4c3.5-6.9 6.7-13.8 9.6-20.6c.5-1.2 1-2.5 1.5-3.7l116-46.4C558.9 123.4 576 135 576 152V422.8c0 9.8-6 18.6-15.1 22.3L416 503V200.4zM137.6 138.3c2.4 14.1 7.2 28.3 12.8 41.5c2.9 6.8 6.1 13.7 9.6 20.6V451.8L32.9 502.7C17.1 509 0 497.4 0 480.4V209.6c0-9.8 6-18.6 15.1-22.3l122.6-49zM327.8 332c13.9-17.4 35.7-45.7 56.2-77V504.3L192 449.4V255c20.5 31.3 42.3 59.6 56.2 77c20.5 25.6 59.1 25.6 79.6 0zM288 152a40 40 0 1 0 0-80 40 40 0 1 0 0 80z"
/>
</svg>
<br />Kediaman Mempelai Wanita <br />
<b>Dusun Tulang Kacang RT01/01 Ds. Arjasari Patrol - Indramayu</b>
</p>
<a
href="#"
class="btn btn-danger mt-3 disabled"
target="_blank"
rel="noopener noreferrer"
><span class="h4 pe-1">Buka Maps</span>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="24"
height="24"
>
<path
fill="#fff"
d="M429.6 92.1c4.9-11.9 2.1-25.6-7-34.7s-22.8-11.9-34.7-7l-352 144c-14.2 5.8-22.2 20.8-19.3 35.8s16.1 25.8 31.4 25.8H224V432c0 15.3 10.8 28.4 25.8 31.4s30-5.1 35.8-19.3l144-352z"
/>
</svg>
</a>
</div>
</div>
</div>
</section>
<section id="our-story" class="our-story">
<div class="p-5">
<h2 class="title display-4 mb-5 text-center">Sat-Set Story</h2>
<div class="container">
<div class="main-timeline">
<!-- start experience section-->
<div class="timeline">
<div class="icon"></div>
<div class="date-content">
<div class="date-outer">
<span class="date">
<span class="month">Agustus</span>
<span class="year">2023</span>
</span>
</div>
</div>
<div class="timeline-content">
<h3 class="title display-6">Perkenalan</h3>
<p class="description h5">Kenal mau nyari kerjaan.</p>
</div>
</div>
<!-- end experience section-->
<!-- start experience section-->
<div class="timeline">
<div class="icon"></div>
<div class="date-content">
<div class="date-outer">
<span class="date">
<span class="month">29 Desember</span>
<span class="year">2023</span>
</span>
</div>
</div>
<div class="timeline-content">
<h3 class="title display-6">Pertemuan Pertama</h3>
<p class="description h5">Pertemuan singkat pertama</p>
</div>
</div>
<!-- end experience section-->
<!-- start experience section-->
<div class="timeline">
<div class="icon"></div>
<div class="date-content">
<div class="date-outer">
<span class="date">
<span class="month">31 Desember</span>
<span class="year">2023</span>
</span>
</div>
</div>
<div class="timeline-content">
<h3 class="title display-6">Pertemuan Kedua</h3>
<p class="description h5">Bakar-bakar sosis</p>
</div>
</div>
<!-- end experience section-->
<!-- start experience section-->
<div class="timeline">
<div class="icon"></div>
<div class="date-content">
<div class="date-outer">
<span class="date">
<span class="month">1 Januari</span>
<span class="year">2024</span>
</span>
</div>
</div>
<div class="timeline-content">
<h3 class="title display-6">Pergi Nonton</h3>
<p class="description h5">Nonton Aquaman: The Lost Kingdom</p>
</div>
</div>
<!-- end experience section-->
<!-- start experience section-->
<div class="timeline">
<div class="icon"></div>
<div class="date-content">
<div class="date-outer">
<span class="date">
<span class="month">12 Februari</span>
<span class="year">2024</span>
</span>
</div>
</div>
<div class="timeline-content">
<h3 class="title display-6">Ngajak Nikah</h3>
<p class="description h5">
Balik kampung buat pemilu presiden sekalian ngajak nikah
</p>
</div>
</div>
<!-- end experience section-->
<!-- start experience section-->
<div class="timeline">
<div class="icon"></div>
<div class="date-content">
<div class="date-outer">
<span class="date">
<span class="month">April</span>
<span class="year">2024</span>
</span>
</div>
</div>
<div class="timeline-content">
<h3 class="title display-6">Nyari Tanggal</h3>
<p class="description h5">
Pertemuan keluarga untuk membicarakan tanggal nikah
</p>
</div>
</div>
<!-- end experience section-->
<!-- start experience section-->
<div class="timeline">
<div class="icon"></div>
<div class="date-content">
<div class="date-outer">
<span class="date">
<span class="month">8 Juni</span>
<span class="year">2024</span>
</span>
</div>
</div>
<div class="timeline-content">
<h3 class="title display-6">Hari H</h3>
<p class="description h5">Halal</p>
</div>
</div>
<!-- end experience section-->
</div>
</div>
</div>
</section>
<section id="gallery" class="gallery">
<div class="py-5 text-center">
<h2 class="title display-4 mb-5">Gallery</h2>
<div class="carousel-wrapper">
<div
id="carouselGallery"
class="carousel slide h-100"
data-bs-ride="carousel"
>
<div class="carousel-inner h-100">
<div class="carousel-item h-100 active">
<div
class="h-100 d-flex align-items-center justify-content-center"
>
<img
src="images/cincin.jpeg"
class="d-block"
alt="Sanudin Ziah Cincin"
/>
</div>
</div>
<div class="carousel-item h-100">
<div
class="h-100 d-flex align-items-center justify-content-center"
>
<img
src="images/bg-biru.jpg"
class="d-block"
alt="Sanudin Ziah Foto BG Biru"
/>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselGallery"
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="#carouselGallery"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
</section>
<section id="wishes" class="send-message">
<div class="p-5 text-center">
<h2 class="title display-4 mb-3">Kirim Ucapan Selamat</h2>
<div class="row align-items-center justify-content-center">
<div class="col-12 col-md-8 col-lg-6">
<form id="form-send-message">
<div class="form-floating mb-3">
<input
type="text"
class="form-control"
id="name"
name="name"
placeholder="John Doe"
/>
<label for="name" class="form-label h6">Nama</label>
</div>
<div class="form-floating mb-3">
<textarea
class="form-control h-25"
id="message"
name="message"
placeholder="Tulis pesan ..."
></textarea>
<label for="message" class="h6">Pesan</label>
</div>
<button
type="submit"
id="btn-send-message"
class="btn btn-danger mb-3 w-100"
>
<span class="h4 pe-1">Kirim</span>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
width="24"
height="24"
>
<path
fill="#fff"
d="M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376V479.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z"
/>
</svg>
</button>
<button
id="btn-send-message-loading"
class="btn btn-danger w-100 d-none"
type="button"
disabled
>
<span role="status"><span class="h4">Loading...</span></span>
<span
class="spinner-border spinner-border-sm"
aria-hidden="true"
></span>
</button>
</form>
</div>
</div>
<hr />
<button
type="button"
id="btn-see-message"
class="btn btn-info text-white mt-4"
>
<span class="h5 me-1">Lihat Ucapan Selamat</span>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"
width="24"
height="24"
>
<path
fill="currentColor"
d="M288 80c-65.2 0-118.8 29.6-159.9 67.7C89.6 183.5 63 226 49.4 256c13.6 30 40.2 72.5 78.6 108.3C169.2 402.4 222.8 432 288 432s118.8-29.6 159.9-67.7C486.4 328.5 513 286 526.6 256c-13.6-30-40.2-72.5-78.6-108.3C406.8 109.6 353.2 80 288 80zM95.4 112.6C142.5 68.8 207.2 32 288 32s145.5 36.8 192.6 80.6c46.8 43.5 78.1 95.4 93 131.1c3.3 7.9 3.3 16.7 0 24.6c-14.9 35.7-46.2 87.7-93 131.1C433.5 443.2 368.8 480 288 480s-145.5-36.8-192.6-80.6C48.6 356 17.3 304 2.5 268.3c-3.3-7.9-3.3-16.7 0-24.6C17.3 208 48.6 156 95.4 112.6zM288 336c44.2 0 80-35.8 80-80s-35.8-80-80-80c-.7 0-1.3 0-2 0c1.3 5.1 2 10.5 2 16c0 35.3-28.7 64-64 64c-5.5 0-10.9-.7-16-2c0 .7 0 1.3 0 2c0 44.2 35.8 80 80 80zm0-208a128 128 0 1 1 0 256 128 128 0 1 1 0-256z"
/>
</svg>
</button>
<button
id="btn-see-message-loading"
class="btn btn-info text-white mt-4 d-none"
type="button"
disabled
>
<span role="status"><span class="h5">Loading...</span></span>
<span
class="spinner-border spinner-border-sm"
aria-hidden="true"
></span>
</button>
</div>
</section>
<section id="bank-info" class="bank-info">
<div class="p-5 text-center">
<h2 class="title display-4">Amplop Digital</h2>
<p class="h5">
Do'a restu Anda merupakan karunia yang sangat berarti bagi kami
</p>
<p class="h5">
Dan jika memberi adalah ungkapan tanda kasih Anda, Anda dapat memberi
kado secara cashless dengan mengirim amplop digital secara transfer
pada akun di bawah ini :
</p>
<div class="pt-3 row align-items-center justify-content-center">
<div class="col-12 col-md-6 col-lg-4 my-2 card-wrapper">
<div class="card">
<div class="align-self-center card-image w-100">
<img
src="images/bca.png"
class="card-img-top pt-5 pb-3 w-50"
alt="Sanudin BCA"
/>
</div>
<div class="card-body pb-4">
<h5 class="card-title">
Silahkan transfer ke <br />
rekening a.n <b>Sanudin</b>
</h5>
<h6 class="card-subtitle mb-3 text-body-secondary h5">
6042485604
</h6>
<button
type="button"
class="btn btn-warning copy"
data-no="6042485604"
data-bs-toggle="tooltip"
data-bs-title="Copy Rekening"
>
Copy no. rekening
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="18"
height="18"
>
<path
fill="currentColor"
d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z"
/>
</svg>
</button>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 my-2 card-wrapper">
<div class="card">
<div class="align-self-center card-image w-100">
<img
src="images/ewallet.png"
class="card-img-top py-1 w-50"
alt="Sanudin e-Wallet"
/>
<img
src="images/bifast.png"
class="card-img-top py-1 w-25"
alt="Sanudin BI-Fast"
/>
</div>
<div class="card-body pb-4">
<h5 class="card-title">
Silahkan transfer ke<br />
e-Wallet/BI-Fast <b>Sanudin</b>
</h5>
<h6 class="card-subtitle mb-3 text-body-secondary h5">
082124389529
</h6>
<button
type="button"
class="btn btn-warning copy"
data-no="082124389529"
data-bs-toggle="tooltip"
data-bs-title="Copy e-Wallet / BI-Fast"
>
Copy no. e-Wallet/BI-Fast
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="18"
height="18"
>
<path
fill="currentColor"
d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z"
/>
</svg>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bottom-content d-none">
<!-- Bottom content for search engine -->
<p>Pernikahan Sanudin dan Nurfauziah pada tanggal 6 Juni 2024.</p>
</section>
<footer class="footer text-center bg-dark pt-5">
<div
class="container d-flex flex-column align-items-center justify-content-center"
>
<section class="d-flex align-items-center justify-content-center">
<div class="sanudin me-5">
<a
rel="noreferrer"
href="https://www.instagram.com/__sanudin"
class="link-light link-offset-2 link-underline-opacity-25 link-underline-opacity-100-hover"
target="_blank"
data-bs-toggle="tooltip"
data-bs-title="Instagram Sanudin"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="32"
height="32"
>
<path
fill="#fff"
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"
/>
</svg>
<br />
Sanudin</a
>
</div>
<div class="ziah ms-5">
<a
rel="noreferrer"
href="https://www.instagram.com/nur_ffaa"
class="link-light link-offset-2 link-underline-opacity-25 link-underline-opacity-100-hover"
target="_blank"
data-bs-toggle="tooltip"
data-bs-title="Instagram Nurfauziah"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
width="32"
height="32"
>
<path
fill="#fff"
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"
/>
</svg>
<br />
Nurfauziah
</a>
</div>
</section>
<hr class="w-50" />
<p class="m-0 copyright">
©
<script>
document.write(new Date().getFullYear());
</script>
- Developed with 💖 by
<a
rel="noreferrer"
href="https://github.com/ssanudin"
class=""
target="_blank"
>Sanudin
</a>
</p>
<p class="view-source">
View Source Code on
<a
href="https://github.com/ssanudin/ziah"
target="_blank"
data-bs-toggle="tooltip"
data-bs-title="Visit GitHub"
><span class="me-1">GitHub</span>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
width="18"
height="18"
>
<path
fill="#828282"
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"
/>
</svg>
</a>
</p>
</div>
</footer>
<div class="position-fixed z-3 bottom-0 end-0 me-4 mb-4 d-none d-md-block">
<button
type="button"
id="go-to-top"
class="btn btn-secondary"
style="display: none"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 384 512"
width="24"
height="24"
>
<path
fill="#fff"
d="M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2V448c0 17.7 14.3 32 32 32s32-14.3 32-32V141.2L329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z"
/>
</svg>
</button>
</div>
<div
class="toast-container position-fixed top-0 start-50 translate-middle mt-5"
>
<div
id="toastSendMsg"
class="toast align-items-center text-bg-success border-0 mt-5"
role="alert"
aria-live="assertive"
aria-atomic="true"
data-bs-autohide="true"
>
<div class="d-flex">
<div class="toast-body h6 m-0">
Terima kasih ucapannya!<br />Kami do'akan agar Anda sehat selalu.
aamiin
</div>
<button
type="button"
class="btn-close btn-close-white me-2 m-auto"
data-bs-dismiss="toast"
aria-label="Close"
></button>
</div>
</div>
<div
id="toastError"
class="toast align-items-center text-bg-danger border-0 mt-5"
role="alert"
aria-live="assertive"
aria-atomic="true"
data-bs-autohide="true"
>
<div class="d-flex">
<div class="toast-body h6 m-0">Terjadi Kesalahan!</div>
<button
type="button"
class="btn-close btn-close-white me-2 m-auto"
data-bs-dismiss="toast"
aria-label="Close"
></button>
</div>
</div>
</div>
<div
class="modal fade"
id="messages"
data-bs-backdrop="static"
data-bs-keyboard="false"
tabindex="-1"
aria-labelledby="messagesLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-scrollable modal-xl">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5 w-100 text-center" id="messagesLabel">
Terima kasih ucapannya!<br />Kami do'akan agar Anda sehat selalu.
aamiin.
</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 justify-content-center">
<div class="row">
<div class="col-auto">