-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbayar.html
521 lines (408 loc) · 22.8 KB
/
bayar.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
<!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">
<title>Your Cake</title>
<link href="https://fonts.googleapis.com/css?family=Heebo:400,400i,500,700|Titillium+Web:600" rel="stylesheet">
<link rel="stylesheet" href="dist/css/style.css">
<link rel="stylesheet" href="dist/css/card.css">
<script src="https://unpkg.com/[email protected]/dist/scrollreveal.min.js"></script>
<link rel="stylesheet" href="bootstrap-5.1.3-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="awesome/css/all.css">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body class="is-boxed">
<div class="body-wrap boxed-container">
<header class="site-header">
<div class="container">
<div class="site-header-inner">
<div class="brand header-brand">
<h1 class="m-0">
<a href="#">
<img width="150" height="150" viewBox="0 0 32 32" src="asset/Cake Blessing.png">
<defs>
<linearGradient x1="0%" y1="0%" y2="100%" id="logo-a">
<stop stop-color="#4353FF" offset="0%"/>
<stop stop-color="#4353FF" stop-opacity=".32" offset="100%"/>
</linearGradient>
<linearGradient x1="0%" y1="0%" y2="100%" id="logo-b">
<stop stop-color="#4353FF" offset="0%"/>
<stop stop-color="#4353FF" stop-opacity=".32" offset="100%"/>
</linearGradient>
<linearGradient x1="0%" y1="0%" y2="100%" id="logo-c">
<stop stop-color="#78F9FF" stop-opacity=".24" offset="0%"/>
<stop stop-color="#43F1FF" offset="55.496%"/>
<stop stop-color="#43F1FF" stop-opacity=".24" offset="100%"/>
</linearGradient>
</defs>
<g fill="none" fill-rule="evenodd">
<path d="M4 0h12v16H0V4a4 4 0 0 1 4-4z" fill="url(#logo-a)"/>
<path d="M16 16h16v12a4 4 0 0 1-4 4H16V16z" fill="url(#logo-b)"/>
<path d="M11.5 20.5H.5v1h10v10h1v-11z" stroke="url(#logo-c)" transform="matrix(-1 0 0 1 12 0)"/>
<path d="M31.5.5h-11v1h10v10h1V.5z" stroke="url(#logo-c)" transform="matrix(1 0 0 -1 0 12)"/>
</g>
</img>
</a>
</h1>
</div>
</div>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<div class="hero-inner">
<div class="hero-copy">
<h1 class="hero-title mt-0 is-revealing">Your Cake Apps</h1>
<h6> Layanan Toko Kue Custom Ternama dan Tepercaya </h6>
<br>
<div class="hero-form field field-grouped is-revealing">
<div class="control control-expanded">
<form name="contact" method="POST" netlify-honeypot="bot-field" data-netlify="true">
<div class="control">
<a class="button button-primary small button-block" type="submit" value="kirim" href="bayar.html">Pesan Sekarang</a>
</div>
</form>
</div>
</div>
</div>
<!-- <div class="showcase-form card">
<h2>Berteman yuk ...</h2>
<form name="contact" method="POST" netlify-honeypot="bot-field" data-netlify="true">
<input type="hidden" name="form-name" value="contact">
<p class="hidden">
<label>Don’t fill this out if you’re human: <input name="bot-field" /></label>
</p>
<div class="form-control">
<input type="text" name="Nama Lengkap" placeholder="Nama Lengkap" required>
</div>
<div class="form-control">
<input type="text" name="Pesan" placeholder="Pesan Singkat" required>
</div>
<div class="form-control">
<input type="email" name="Media Pertemanan" placeholder="Media Pertemanan" required>
</div>
<input type="submit" value="Kirim" class="btn btn-primary">
</form>
</div> -->
<div class="hero-illustration">
<div class="hero-bg">
<svg width="720" height="635" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="97.738%" id="a">
<stop stop-color="#151616" offset="0%"/>
<stop stop-color="#222424" offset="100%"/>
</linearGradient>
</defs>
<path d="M0 0h720v504.382L279.437 630.304c-53.102 15.177-108.454-15.567-123.631-68.669-.072-.25-.142-.5-.211-.75L0 0z" fill="url(#a)" fill-rule="evenodd"/>
</svg>
</div>
<div class="hero-square hero-square-3 is-moving-object is-rotating">
<img width="110" height="200" viewBox="0 0 32 32" src="asset/icon3.png">
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="square-3-a">
<stop stop-color="#4353FF" offset="0%"/>
<stop stop-color="#4353FF" stop-opacity=".16" offset="100%"/>
</linearGradient>
<linearGradient x1="-58.825%" y1="39.622%" x2="81.589%" y2="-11.971%" id="square-3-b">
<stop stop-color="#43F1FF" stop-opacity=".24" offset="0%"/>
<stop stop-color="#43F1FF" stop-opacity=".163" offset="100%"/>
</linearGradient>
</defs>
<g fill="none" fill-rule="evenodd" opacity=".64">
<path fill="url(#square-3-a)" d="M0 0h64v64H0z"/>
<path d="M14.03 0C27.176 13.07 42 27.791 42 38.165c0 17.46-14.154-11.127-31.614-11.127-2.67 0-6.289.931-10.386 2.406V0h14.03z" fill="url(#square-3-b)"/>
</g>
</img>
</div>
<div class="hero-square hero-square-4 is-moving-object is-rotating">
<img width="110" height="200" viewBox="0 0 32 32" src="asset/icon2.png">
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="square-4-a">
<stop stop-color="#4353FF" offset="0%"/>
<stop stop-color="#4353FF" stop-opacity=".32" offset="100%"/>
</linearGradient>
<linearGradient x1="18.74%" y1="17.384%" x2="96.787%" y2="88.669%" id="square-4-b">
<stop stop-color="#43F1FF" stop-opacity="0" offset="0%"/>
<stop stop-color="#43F1FF" offset="53.489%"/>
<stop stop-color="#43F1FF" stop-opacity="0" offset="100%"/>
</linearGradient>
<linearGradient x1="0%" y1="57.64%" x2="94.346%" y2="8.32%" id="square-4-c">
<stop stop-color="#43F1FF" stop-opacity=".24" offset="0%"/>
<stop stop-color="#43F1FF" stop-opacity=".16" offset="100%"/>
</linearGradient>
<radialGradient cx="100%" cy="100%" fx="100%" fy="100%" r="136.8%" id="square-4-d">
<stop stop-color="#43F1FF" offset="0%"/>
<stop stop-color="#43F1FF" stop-opacity="0" offset="100%"/>
</radialGradient>
<radialGradient cx="100%" cy="100%" fx="100%" fy="100%" r="140.264%" id="square-4-e">
<stop stop-color="#43F1FF" offset="0%"/>
<stop stop-color="#43F1FF" stop-opacity="0" offset="100%"/>
</radialGradient>
<radialGradient cx="100%" cy="100%" fx="100%" fy="100%" r="137.638%" id="square-4-f">
<stop stop-color="#43F1FF" offset="0%"/>
<stop stop-color="#43F1FF" stop-opacity="0" offset="100%"/>
</radialGradient>
</defs>
<g fill="none" fill-rule="evenodd">
<rect fill="url(#square-4-a)" width="320" height="320" rx="2"/>
<path d="M278.958 209.715c-54.758 37.966-82.136 27.43-82.136-31.606s-34.335-65.905-103.005-20.607C49.492 185.246 33.604 160.412 46.154 83" stroke="url(#square-4-b)" stroke-width="3"/>
<path d="M71.05 41.844c57.243-16.532 154.657 38.697 154.657-16.532 0-8.934-4.692-17.934-10.123-25.312H0v99.92c19.6-22.665 44.942-50.536 71.05-58.076z" fill="url(#square-4-c)"/>
<path d="M320 320V66C179.72 66 66 179.72 66 320h254z" fill="url(#square-4-d)" opacity=".16"/>
<path d="M320 320V131c-104.382 0-189 84.618-189 189h189z" fill="url(#square-4-e)" opacity=".32"/>
<path d="M320 320V196c-68.483 0-124 55.517-124 124h124z" fill="url(#square-4-f)"/>
</g>
</img>
</div>
<div class="hero-square hero-square-6 is-moving-object is-rotating">
<img width="110" height="200" viewBox="0 0 32 32" src="asset/icon.png">
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="square-6-a">
<stop stop-color="#4353FF" offset="0%"/>
<stop stop-color="#4353FF" stop-opacity=".32" offset="100%"/>
</linearGradient>
<linearGradient x1="14.98%" y1="57.941%" x2="95.966%" y2="33.366%" id="square-6-b">
<stop stop-color="#43F1FF" stop-opacity=".24" offset="0%"/>
<stop stop-color="#43F1FF" stop-opacity=".16" offset="100%"/>
</linearGradient>
<linearGradient x1="97.033%" y1="97.033%" x2="0%" y2="0%" id="square-6-c">
<stop stop-color="#43F1FF" offset="0%"/>
<stop stop-color="#43F1FF" stop-opacity=".24" offset="100%"/>
</linearGradient>
<linearGradient x1="18.74%" y1="17.384%" x2="96.787%" y2="88.669%" id="square-6-d">
<stop stop-color="#43F1FF" stop-opacity="0" offset="0%"/>
<stop stop-color="#43F1FF" offset="53.489%"/>
<stop stop-color="#43F1FF" stop-opacity="0" offset="100%"/>
</linearGradient>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="url(#square-6-a)" d="M0 0h128v128H0z"/>
<path d="M27.652 128H0V32.762c13.602-4.224 26.559-6.606 36.988-6.606 42.25 0-38.976 13.508-19.488 50.235C25.002 90.529 28.544 109.73 27.652 128z" fill="url(#square-6-b)"/>
<path fill="url(#square-6-c)" opacity=".32" d="M88 88h40v40H88z"/>
<path d="M69 68l39.459 40.249" stroke="url(#square-6-d)" stroke-width="3"/>
</g>
</img>
</div>
<div class="hero-dots hero-dots-1 is-moving-object is-translating" data-translating-factor="160">
<svg width="279" height="97" xmlns="http://www.w3.org/2000/svg">
<g fill="#43F1FF" fill-rule="evenodd">
<path d="M71.686 0l-2.899 1.334L68 4.157l.926 2.688L71.686 8l2.6-1.31L76 4.156l-1.295-2.94z"/>
<path fill-opacity=".64" d="M38.843 2l-1.45.667L37 4.079l.463 1.344 1.38.577 1.3-.655L41 4.079l-.648-1.47z"/>
<path fill-opacity=".24" d="M65.843 55l-1.45.667L64 57.079l.463 1.344 1.38.577 1.3-.655.857-1.266-.648-1.47z"/>
<path fill-opacity=".64" d="M94.765 29l-2.175 1-.59 2.118.695 2.016 2.07.866 1.95-.983 1.285-1.9-.972-2.204z"/>
<path fill-opacity=".8" d="M58.765 25l-2.175 1-.59 2.118.695 2.016 2.07.866 1.95-.983 1.285-1.9-.972-2.204z"/>
<path fill-opacity=".48" d="M18.843 44l-1.45.667L17 46.079l.463 1.344 1.38.577 1.3-.655.857-1.266-.648-1.47z"/>
<path fill-opacity=".64" d="M8.843 29l-1.45.667L7 31.079l.463 1.344 1.38.577 1.3-.655.857-1.266-.648-1.47z"/>
<path fill-opacity=".48" d="M32.843 29l-1.45.667L31 31.079l.463 1.344 1.38.577 1.3-.655.857-1.266-.648-1.47zM.922 45l-.725.333L0 46.04l.232.672.69.289.65-.328L2 46.04l-.324-.735z"/>
<path fill-opacity=".24" d="M267.843 93l-1.45.667-.393 1.412.463 1.344 1.38.577 1.3-.655.857-1.266-.648-1.47z"/>
<path fill-opacity=".8" d="M275.765 75l-2.175 1-.59 2.118.695 2.016 2.07.866 1.95-.983 1.285-1.9-.972-2.204z"/>
<path fill-opacity=".48" d="M259.843 78l-1.45.667-.393 1.412.463 1.344 1.38.577 1.3-.655.857-1.266-.648-1.47z"/>
</g>
</svg>
</div>
<div class="hero-dots hero-dots-3 is-moving-object is-translating" data-translating-factor="160">
<svg width="98" height="59" xmlns="http://www.w3.org/2000/svg">
<g fill="#43F1FF" fill-rule="evenodd">
<path d="M26.314 0l2.899 1.334L30 4.157l-.926 2.688L26.314 8l-2.6-1.31L22 4.156l1.295-2.94z"/>
<path fill-opacity=".64" d="M59.157 2l1.45.667L61 4.079l-.463 1.344-1.38.577-1.3-.655L57 4.079l.648-1.47z"/>
<path fill-opacity=".24" d="M32.157 55l1.45.667.393 1.412-.463 1.344-1.38.577-1.3-.655L30 57.079l.648-1.47z"/>
<path fill-opacity=".64" d="M3.235 29l2.175 1L6 32.118l-.695 2.016-2.07.866-1.95-.983L0 32.117l.972-2.204z"/>
<path fill-opacity=".8" d="M39.235 25l2.175 1 .59 2.118-.695 2.016-2.07.866-1.95-.983-1.285-1.9.972-2.204z"/>
<path fill-opacity=".48" d="M79.157 44l1.45.667.393 1.412-.463 1.344-1.38.577-1.3-.655L77 46.079l.648-1.47z"/>
<path fill-opacity=".64" d="M89.157 29l1.45.667.393 1.412-.463 1.344-1.38.577-1.3-.655L87 31.079l.648-1.47z"/>
<path fill-opacity=".48" d="M65.157 29l1.45.667.393 1.412-.463 1.344-1.38.577-1.3-.655L63 31.079l.648-1.47zM97.078 45l.725.333.197.706-.232.672-.69.289-.65-.328L96 46.04l.324-.735z"/>
</g>
</svg>
</div>
<div class="hero-line hero-line-1">
<svg width="344" height="217" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient x1="18.74%" y1="17.384%" x2="96.787%" y2="88.669%" id="line-1-a">
<stop stop-color="#5D6AFF" stop-opacity="0" offset="0%"/>
<stop stop-color="#5D6AFF" offset="53.489%"/>
<stop stop-color="#5D6AFF" stop-opacity="0" offset="100%"/>
</linearGradient>
</defs>
<path d="M340.86 180.664l2.281 3.287c-79.796 55.378-120.994 39.511-120.994-47.035 0-82.777-47.283-92.246-144.735-27.901-32.607 20.428-55.391 21.53-67.544 2.516C-1.882 93.147-3.092 56.053 5.987 0l3.948.64c-8.928 55.125-7.743 91.453 3.303 108.736 10.644 16.653 31.058 15.666 62.01-3.725 99.65-65.797 150.9-55.534 150.9 31.265 0 83.03 37.371 97.424 114.713 43.748z" fill="url(#line-1-a)" fill-rule="nonzero" transform="matrix(-1 0 0 1 343.141 0)"/>
</svg>
</div>
</div>
</div>
</div>
</section>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<!-- <ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link active" href="home.html"><i class="fas fa-sticky-note"></i> Page Kue</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#"></a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#"></a>
</li>
<li class="nav-item">
<a class="nav-link active" href="bayar.html"><i class="fas fa-cart-plus"></i> Pesanan</a>
</li>
</ul> -->
<div class="container">
<div class="d-grid gap-1">
<!-- <button class="btn btn-primary" type="button" href="http://localhost/RPL/index.php/dashboard/home">Pesan</button> -->
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link active" href="home.html"><i class="fas fa-sticky-note"></i> Page Menu </a>
</li>
<li class="nav-item">
<a class="nav-link active" href="bayar.html"><i class="fas fa-cart-plus"></i> Pesan Kue </a>
</li>
</ul>
</div>
</div>
<br><br><br><br>
<div class="container">
<!-- <form action="" class="container">
<div class=" row">
<div class="col">
<h6>Nama Lengkap Penerima</h6>
<input type="text" class="form-control search" id="exampleFormControlInput1" placeholder="Nama Penerima">
</div>
<div class="col mb-3">
<h6>Alamat Lengkap Penerima</h6>
<input type="text" class="form-control search" id="exampleFormControlInput1" placeholder="Alamat Lengkap">
</div>
</div>
<div class=" row">
<div class="col">
<h6>Cara Pembayaran</h6>
<select class="form-control" id="exampleFormControlSelect1" cols="60" >
<option>---</option>
<option>Bank BCA</option>
<option>Bank BRI</option>
<option>Bank BNI</option>
<option>Bank Mandiri</option>
<option>Shopee Pay</option>
<option>Cash On Delivery</option>
</select>
</div>
<div class="mb-3 col">
<h6>Media Pengiriman</h6>
<select class="form-control" id="exampleFormControlSelect1" cols="60" >
<option>---</option>
<option>Gojek</option>
<option>Grab Express</option>
<option>Driver Cake Blessing</option>
<option>Lala Move</option>
</select>
</div>
</div>
<div class="mb-3 row">
<div class="col">
<h6>Nama Lengkap Penerima</h6>
<form action="upload.php" method="post" enctype="multipart/form-data">
Pilih file: <input type="file" name="berkas" />
<input type="submit" name="upload" value="upload" />
</form>
</div>
</div>
<div class="mb-3 ">
<h6>Catatan Pesanan</h6>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="Catatan Yang Ingin Disampaikan"></textarea>
</div>
</form> -->
<br><br><br>
<!-- <ul class="nav justify-content-md-center">
<h6>Pemesanan dan Pembayaran Kue Bisa Anda Buka Link Dibawah.</h6>
</ul> -->
<div class="container">
<div class="d-grid gap-1">
<!-- <button class="btn btn-primary" type="button" href="http://localhost/RPL/index.php/dashboard/home">Pesan</button> -->
<ul class="nav justify-content-center">
<li class="nav-item">
<h6>Pemesanan Makanan Bisa Anda Buka Link Dibawah Ini.</h6>
</li>
</ul>
</div>
</div>
</div>
<br>
<div class="container">
<div class="d-grid gap-1">
<!-- <button class="btn btn-primary" type="button" href="http://localhost/RPL/index.php/dashboard/home">Pesan</button> -->
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link active" href="https://forms.gle/kf1UeWFarSrZWVJy7">Pesan Sekarang </a>
</li>
</ul>
</div>
</div>
<br><br><br><br>
<div class="container">
<div class="d-grid gap-1">
<!-- <button class="btn btn-primary" type="button" href="http://localhost/RPL/index.php/dashboard/home">Pesan</button> -->
<ul class="nav justify-content-center">
<li class="nav-item">
<h6>Daftar Member Baru Your Cake.</h6>
</li>
</ul>
</div>
</div>
<br><br>
<div class="container">
<div class="d-grid gap-1">
<!-- <button class="btn btn-primary" type="button" href="http://localhost/RPL/index.php/dashboard/home">Pesan</button> -->
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link active" href="https://forms.gle/8pxHzLZNYKYtqPeP6">Daftar Member Baru</a>
</li>
</ul>
</div>
</div>
</main>
<footer class="site-footer">
<br><br><br><br><br><br><br><br><br><br><br><br>
<div class="container">
<div class="site-footer-inner has-top-divider">
<div class="footer-copyright"><h6>STT Terpadu Nurul Fikri</h6></div>
<ul class="footer-social-links list-reset">
<li>
<a href="#">
<span class="screen-reader-text">Facebook</span>
<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg">
<path d="M6.023 16L6 9H3V6h3V4c0-2.7 1.672-4 4.08-4 1.153 0 2.144.086 2.433.124v2.821h-1.67c-1.31 0-1.563.623-1.563 1.536V6H13l-1 3H9.28v7H6.023z" fill="#FFFFFF"/>
</svg>
</a>
</li>
<li>
<a href="#">
<span class="screen-reader-text">Twitter</span>
<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg">
<path d="M16 3c-.6.3-1.2.4-1.9.5.7-.4 1.2-1 1.4-1.8-.6.4-1.3.6-2.1.8-.6-.6-1.5-1-2.4-1-1.7 0-3.2 1.5-3.2 3.3 0 .3 0 .5.1.7-2.7-.1-5.2-1.4-6.8-3.4-.3.5-.4 1-.4 1.7 0 1.1.6 2.1 1.5 2.7-.5 0-1-.2-1.5-.4C.7 7.7 1.8 9 3.3 9.3c-.3.1-.6.1-.9.1-.2 0-.4 0-.6-.1.4 1.3 1.6 2.3 3.1 2.3-1.1.9-2.5 1.4-4.1 1.4H0c1.5.9 3.2 1.5 5 1.5 6 0 9.3-5 9.3-9.3v-.4C15 4.3 15.6 3.7 16 3z" fill="#FFFFFF"/>
</svg>
</a>
</li>
<li>
<a href="#">
<span class="screen-reader-text">Google</span>
<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg">
<path d="M7.9 7v2.4H12c-.2 1-1.2 3-4 3-2.4 0-4.3-2-4.3-4.4 0-2.4 2-4.4 4.3-4.4 1.4 0 2.3.6 2.8 1.1l1.9-1.8C11.5 1.7 9.9 1 8 1 4.1 1 1 4.1 1 8s3.1 7 7 7c4 0 6.7-2.8 6.7-6.8 0-.5 0-.8-.1-1.2H7.9z" fill="#FFFFFF"/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</footer>
</div>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
<script src="awesome/js/fontawesome.min.js"></script>
<script src="bootstrap-5.1.3-dist/js/bootstrap.bundle.min.js"></script>
<script src="dist/js/main.min.js"></script>
</body>
</html>