-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
976 lines (947 loc) · 45.6 KB
/
cart.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
<!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>Cart</title>
<link rel="stylesheet" href="/style/navbar.css" />
<link rel="stylesheet" href="/style/cart.css" />
<link rel="stylesheet" href="/style/footer.css" />
<script
src="https://kit.fontawesome.com/33703f557e.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- navbar -->
<div id="cartnavbar"></div>
<div id="contener">
<!-- div leftside -->
<div id="cartLeftSide">
<div id="cartTitle">
<h1 id="title">I will design 3 modern minimalist logo design</h1>
<div id="cartRating">
<h4>logoflow</h4>
<p>Level 2 Seller | </p>
<svg
width="16"
height="15"
viewBox="0 0 16 15"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M16 5.81285C16 5.98299 15.875 6.14367 15.75 6.26654L12.2596 9.61248L13.0865 14.3384C13.0962 14.4045 13.0962 14.4612 13.0962 14.5274C13.0962 14.7732 12.9808 15 12.7019 15C12.5673 15 12.4327 14.9527 12.3173 14.8866L8 12.656L3.68269 14.8866C3.55769 14.9527 3.43269 15 3.29808 15C3.01923 15 2.89423 14.7732 2.89423 14.5274C2.89423 14.4612 2.90385 14.4045 2.91346 14.3384L3.74038 9.61248L0.240385 6.26654C0.125 6.14367 0 5.98299 0 5.81285C0 5.5293 0.298077 5.41588 0.538462 5.37807L5.36539 4.68809L7.52885 0.387524C7.61539 0.207939 7.77885 0 8 0C8.22115 0 8.38462 0.207939 8.47115 0.387524L10.6346 4.68809L15.4615 5.37807C15.6923 5.41588 16 5.5293 16 5.81285Z"
></path>
</svg>
<svg
width="16"
height="15"
viewBox="0 0 16 15"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M16 5.81285C16 5.98299 15.875 6.14367 15.75 6.26654L12.2596 9.61248L13.0865 14.3384C13.0962 14.4045 13.0962 14.4612 13.0962 14.5274C13.0962 14.7732 12.9808 15 12.7019 15C12.5673 15 12.4327 14.9527 12.3173 14.8866L8 12.656L3.68269 14.8866C3.55769 14.9527 3.43269 15 3.29808 15C3.01923 15 2.89423 14.7732 2.89423 14.5274C2.89423 14.4612 2.90385 14.4045 2.91346 14.3384L3.74038 9.61248L0.240385 6.26654C0.125 6.14367 0 5.98299 0 5.81285C0 5.5293 0.298077 5.41588 0.538462 5.37807L5.36539 4.68809L7.52885 0.387524C7.61539 0.207939 7.77885 0 8 0C8.22115 0 8.38462 0.207939 8.47115 0.387524L10.6346 4.68809L15.4615 5.37807C15.6923 5.41588 16 5.5293 16 5.81285Z"
></path>
</svg>
<svg
width="16"
height="15"
viewBox="0 0 16 15"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M16 5.81285C16 5.98299 15.875 6.14367 15.75 6.26654L12.2596 9.61248L13.0865 14.3384C13.0962 14.4045 13.0962 14.4612 13.0962 14.5274C13.0962 14.7732 12.9808 15 12.7019 15C12.5673 15 12.4327 14.9527 12.3173 14.8866L8 12.656L3.68269 14.8866C3.55769 14.9527 3.43269 15 3.29808 15C3.01923 15 2.89423 14.7732 2.89423 14.5274C2.89423 14.4612 2.90385 14.4045 2.91346 14.3384L3.74038 9.61248L0.240385 6.26654C0.125 6.14367 0 5.98299 0 5.81285C0 5.5293 0.298077 5.41588 0.538462 5.37807L5.36539 4.68809L7.52885 0.387524C7.61539 0.207939 7.77885 0 8 0C8.22115 0 8.38462 0.207939 8.47115 0.387524L10.6346 4.68809L15.4615 5.37807C15.6923 5.41588 16 5.5293 16 5.81285Z"
></path>
</svg>
<svg
width="16"
height="15"
viewBox="0 0 16 15"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M16 5.81285C16 5.98299 15.875 6.14367 15.75 6.26654L12.2596 9.61248L13.0865 14.3384C13.0962 14.4045 13.0962 14.4612 13.0962 14.5274C13.0962 14.7732 12.9808 15 12.7019 15C12.5673 15 12.4327 14.9527 12.3173 14.8866L8 12.656L3.68269 14.8866C3.55769 14.9527 3.43269 15 3.29808 15C3.01923 15 2.89423 14.7732 2.89423 14.5274C2.89423 14.4612 2.90385 14.4045 2.91346 14.3384L3.74038 9.61248L0.240385 6.26654C0.125 6.14367 0 5.98299 0 5.81285C0 5.5293 0.298077 5.41588 0.538462 5.37807L5.36539 4.68809L7.52885 0.387524C7.61539 0.207939 7.77885 0 8 0C8.22115 0 8.38462 0.207939 8.47115 0.387524L10.6346 4.68809L15.4615 5.37807C15.6923 5.41588 16 5.5293 16 5.81285Z"
></path>
</svg>
<svg
width="16"
height="15"
viewBox="0 0 16 15"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M16 5.81285C16 5.98299 15.875 6.14367 15.75 6.26654L12.2596 9.61248L13.0865 14.3384C13.0962 14.4045 13.0962 14.4612 13.0962 14.5274C13.0962 14.7732 12.9808 15 12.7019 15C12.5673 15 12.4327 14.9527 12.3173 14.8866L8 12.656L3.68269 14.8866C3.55769 14.9527 3.43269 15 3.29808 15C3.01923 15 2.89423 14.7732 2.89423 14.5274C2.89423 14.4612 2.90385 14.4045 2.91346 14.3384L3.74038 9.61248L0.240385 6.26654C0.125 6.14367 0 5.98299 0 5.81285C0 5.5293 0.298077 5.41588 0.538462 5.37807L5.36539 4.68809L7.52885 0.387524C7.61539 0.207939 7.77885 0 8 0C8.22115 0 8.38462 0.207939 8.47115 0.387524L10.6346 4.68809L15.4615 5.37807C15.6923 5.41588 16 5.5293 16 5.81285Z"
></path>
</svg>
<p>(13,148)</p>
<p>121 Orders in Queue</p>
</div>
</div>
<div id="cartMiddle">
<div id="cartMiddlePoster">
<img
src="https://fiverr-res.cloudinary.com/image/upload/t_gig_pdf_gallery_view_ver4,f_jpg/20220614/modern%20minimalist%20logo%20design_ilaoj2.jpg"
alt=""
id="image"
/>
</div>
<div id="cartAbout">
<h1>About This Gig</h1>
<h4>
This Gig assures you for the logo designs with minimalism and
smoothness
</h4>
<p>
This Gig is of one of many design kinds we offer. Flat design
concepts are one of our fortes. For the logo to be timeless it
doesn’t need to be with complex structures or patterns. It just
needs to be simple, memorable and which gives a distinctive
essence to your business
</p>
<b>PORTFOLIO : https://bit.ly/33F8l6C</b>
<b>
A flat design is the one which defines your identity or your
business but doesn’t get in way of your destination for your
target audience
</b>
<p>
Our minimalistic logo designs will help in representing your
company in a unique way. We believe that minimalism is not simple
but has unlimited boundaries of its own
</p>
<p>
<b>Why me?</b><br />Consistent | Creative | Patient | Adaptive
communication | Expert | Learner | Listener
</p>
<p>
<b>OUR ARTISTRY INSPIRATION</b><br />
We want to give your business a spotlight which will give you a
path through which you can shine through. Clarity lies within the
simplicity of the creations. We will provide you with the
essentials which will represent the hard work which you have put
through your brand
</p>
<b
>Get a free consultation with us, with just a click of finger. I
can’t wait to get connected</b
>
</div>
<div id="cartLogoStyle">
<div>
<p>
<b>Logo style</b><br />
Minimalist
</p>
</div>
<div>
<p>
File format <br />
AI, JPG, PDF, PNG, PSD, <br />
EPS, CDR, SVG
</p>
</div>
</div>
<div id="cartAboutMe">
<div id="cartAboutMeHead">
<div>
<p>
From <br />
<b>India</b>
</p>
<p>
Avg. response time
</div> <br />
<b id="time">3 hours</b>
</p>
<div>
<p>
Member since<br />
<b> Dec 2015</b>
</p>
<p>
Last delivery<br />
<b>just now</b>
</p>
</div>
</div>
<div>
<p>
Hi,<br />
Mayur here. <br />
I am a professional graphic designer with an experience of 10+
years. Let my field of expertise collaborate with your level of
imagination, so together we can create an exceptional brand
image. Something which creates an impact. Impact which screams
for its acknowledgment without you needing to do so. Let us make
wonders together in this field of designing. Keep exploring.
</p>
</div>
</div>
<div id="cartComparePackage">
<h1>Compare Package</h1>
<table>
<thead>
<tr>
<td>Package</td>
<td>
<div> ₹2,096 </div>
<h3>Basic</h3>
<b>SILKY FLOW</b>
<p>
3 LOGOS in JPG & PNG (transparent) + NO Mascots & Complex
design
</p>
</td>
<td>
<div> ₹5,867 </div>
<h3>Standard</h3>
<b> FLUID FLOW</b>
<p>
4 High Quality Creative designs + Logo Presentation + All
file Formats + Unlimited Revisions
</p>
</td>
<td>
<div>₹15,925</div>
<h3>Premium</h3>
<b>FLEXIBLE FLOW</b>
<p>
5 Ultra HQ concepts + UNLIMITED Revision + Stationery
Package + Social media kit + VIP support
</p>
</td>
</tr>
</thead>
<tbody>
<tr>
<td>Logo transparency</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
</tr>
<tr>
<td>Vector file</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
</tr>
<tr>
<td>Printable file</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
</tr>
<tr>
<td>Source file</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
</tr>
<tr>
<td>Stationery designs</td>
<td>
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
</tr>
<tr>
<td>Social media kit</td>
<td>
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td>
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
<td class="cartFill">
<svg
width="11"
height="9"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.64489 8.10164L0.158292 4.61504C-0.0511769 4.40557 -0.0511769 4.06594 0.158292 3.85645L0.916858 3.09786C1.12633 2.88837 1.46598 2.88837 1.67545 3.09786L4.02419 5.44658L9.05493 0.41586C9.2644 0.206391 9.60405 0.206391 9.81352 0.41586L10.5721 1.17445C10.7816 1.38392 10.7816 1.72355 10.5721 1.93303L4.40348 8.10166C4.19399 8.31113 3.85436 8.31113 3.64489 8.10164V8.10164Z"
></path>
</svg>
</td>
</tr>
<tr>
<td>Number of concepts included</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td></td>
<td>
<button class="class-green">Select</button>
</td>
<td>
<button class="class-green">
Select
</button>
</td>
<td>
<button class="class-green">
Select
</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- cart page basic standers premium right side-->
<div id="cartTabs">
<div class="tabs">
<label data-tab-target="#basic" class="tab active">Basic</label>
<label data-tab-target="#standard" class="tab">Standard</label>
<label data-tab-target="#premium" class="tab">Premium</label>
</div>
<!-- tab containt -->
<div id="tab-content">
<div id="basic" data-tab-content class="active">
<h2 id="cart-basic-price">₹2,516</h2>
<p>Save up to 5% with Subscribe to Save</p>
<p>
GOLD:Headline & Summary Only Optimized Headline + Personalized
250+ words Bio + 3 Banner options + Featured Section + Bonus Tips
</p>
<div class="cart-advatages">
<div>
<span>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6z"
></path>
<path d="M9 4H7v5h5V7H9V4z"></path>
</svg>
</span>
<b class="delivery">5 Days Delivery</b>
</div>
<div>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M4.50001 11.4999C6.40001 13.3999 9.60001 13.3999 11.5 11.4999C12.2 10.7999 12.7 9.7999 12.9 8.7999L14.9 9.0999C14.7 10.5999 14 11.8999 13 12.8999C10.3 15.5999 5.90001 15.5999 3.10001 12.8999L0.900012 15.0999L0.200012 8.6999L6.60001 9.3999L4.50001 11.4999Z"
></path>
<path
d="M15.8 7.2999L9.40001 6.5999L11.5 4.4999C9.60001 2.5999 6.40001 2.5999 4.50001 4.4999C3.80001 5.1999 3.30001 6.1999 3.10001 7.1999L1.10001 6.8999C1.30001 5.3999 2.00001 4.0999 3.00001 3.0999C4.40001 1.6999 6.10001 1.0999 7.90001 1.0999C9.70001 1.0999 11.5 1.7999 12.8 3.0999L15 0.899902L15.8 7.2999Z"
></path>
</svg>
<b class="revisions">3 Revision</b>
</div>
</div>
<div class="cart-features">
<ul>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>2 concepts included</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Logo transparency</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Vector file</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Printable file</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Source file</p>
</li>
</ul>
</div>
<button class="cart-continue-btn" onclick="cartbasic()">
Continue
<span>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.92332 2.96885C9.63854 2.66807 9.1768 2.66807 8.89202 2.96885C8.60723 3.26963 8.60723 3.75729 8.89202 4.05807L11.6958 7.01931H1.48616C1.08341 7.01931 0.756918 7.36413 0.756918 7.7895C0.756918 8.21487 1.08341 8.5597 1.48616 8.5597H11.8436L8.89202 11.677C8.60723 11.9778 8.60723 12.4654 8.89202 12.7662C9.1768 13.067 9.63854 13.067 9.92332 12.7662L14.0459 8.41213C14.3307 8.11135 14.3307 7.62369 14.0459 7.32291L13.977 7.25011C13.9737 7.24661 13.9704 7.24315 13.9671 7.23972L9.92332 2.96885Z"
></path>
</svg>
</span>
</button>
<button class="cart-compare-btn">Compare Pakages</button>
</div>
<div id="standard" data-tab-content>
<h2 id="cart-standard-price">₹4,932</h2>
<p>Save up to 5% with Subscribe to Save</p>
<p>
SILVER: Complete Profile GOLD + Custom URL + 50 Skills + Job
Experience Content + Job Alerts Activation + Education
</p>
<div class="cart-advatages">
<div>
<span>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6z"
></path>
<path d="M9 4H7v5h5V7H9V4z"></path>
</svg>
</span>
<b class="delivery">7 Days Delivery</b>
</div>
<div>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M4.50001 11.4999C6.40001 13.3999 9.60001 13.3999 11.5 11.4999C12.2 10.7999 12.7 9.7999 12.9 8.7999L14.9 9.0999C14.7 10.5999 14 11.8999 13 12.8999C10.3 15.5999 5.90001 15.5999 3.10001 12.8999L0.900012 15.0999L0.200012 8.6999L6.60001 9.3999L4.50001 11.4999Z"
></path>
<path
d="M15.8 7.2999L9.40001 6.5999L11.5 4.4999C9.60001 2.5999 6.40001 2.5999 4.50001 4.4999C3.80001 5.1999 3.30001 6.1999 3.10001 7.1999L1.10001 6.8999C1.30001 5.3999 2.00001 4.0999 3.00001 3.0999C4.40001 1.6999 6.10001 1.0999 7.90001 1.0999C9.70001 1.0999 11.5 1.7999 12.8 3.0999L15 0.899902L15.8 7.2999Z"
></path>
</svg>
<b class="revisions">5 Revision</b>
</div>
</div>
<div class="cart-features">
<ul>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>2 concepts included</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Logo transparency</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Vector file</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Printable file</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Source file</p>
</li>
</ul>
</div>
<button class="cart-continue-btn" onclick="cartstandard()">
Continue
<span>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.92332 2.96885C9.63854 2.66807 9.1768 2.66807 8.89202 2.96885C8.60723 3.26963 8.60723 3.75729 8.89202 4.05807L11.6958 7.01931H1.48616C1.08341 7.01931 0.756918 7.36413 0.756918 7.7895C0.756918 8.21487 1.08341 8.5597 1.48616 8.5597H11.8436L8.89202 11.677C8.60723 11.9778 8.60723 12.4654 8.89202 12.7662C9.1768 13.067 9.63854 13.067 9.92332 12.7662L14.0459 8.41213C14.3307 8.11135 14.3307 7.62369 14.0459 7.32291L13.977 7.25011C13.9737 7.24661 13.9704 7.24315 13.9671 7.23972L9.92332 2.96885Z"
></path>
</svg>
</span>
</button>
<button class="cart-compare-btn">Compare Pakages</button>
</div>
<div id="premium" data-tab-content>
<h2 id="cart-premium-price">₹2,932</h2>
<p>Save up to 5% with Subscribe to Save</p>
<p>
DIAMOND: Personal & Business Page SILVER for Personal Profile +
Customized Banner + Optimized 250+ words for Business Summary
</p>
<div class="cart-advatages">
<div>
<span>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6z"
></path>
<path d="M9 4H7v5h5V7H9V4z"></path>
</svg>
</span>
<b class="delivery">10 Days Delivery</b>
</div>
<div>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M4.50001 11.4999C6.40001 13.3999 9.60001 13.3999 11.5 11.4999C12.2 10.7999 12.7 9.7999 12.9 8.7999L14.9 9.0999C14.7 10.5999 14 11.8999 13 12.8999C10.3 15.5999 5.90001 15.5999 3.10001 12.8999L0.900012 15.0999L0.200012 8.6999L6.60001 9.3999L4.50001 11.4999Z"
></path>
<path
d="M15.8 7.2999L9.40001 6.5999L11.5 4.4999C9.60001 2.5999 6.40001 2.5999 4.50001 4.4999C3.80001 5.1999 3.30001 6.1999 3.10001 7.1999L1.10001 6.8999C1.30001 5.3999 2.00001 4.0999 3.00001 3.0999C4.40001 1.6999 6.10001 1.0999 7.90001 1.0999C9.70001 1.0999 11.5 1.7999 12.8 3.0999L15 0.899902L15.8 7.2999Z"
></path>
</svg>
<b class="revisions">7 Revision</b>
</div>
</div>
<div class="cart-features">
<ul>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>2 concepts included</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Logo transparency</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Vector file</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Printable file</p>
</li>
<li>
<p>
<svg
width="16"
height="16"
viewBox="0 0 11 9"
xmlns="http://www.w3.org/2000/svg"
fill="currentFill"
>
<path
d="M3.645 8.102.158 4.615a.536.536 0 0 1 0-.759l.759-.758c.21-.21.549-.21.758 0l2.35 2.349L9.054.416c.21-.21.55-.21.759 0l.758.758c.21.21.21.55 0 .759L4.403 8.102c-.209.21-.549.21-.758 0Z"
></path>
</svg>
</p>
<p>Source file</p>
</li>
</ul>
</div>
<button class="cart-continue-btn" id="cart-premium-price" onclick="cartpremium()">
Continue
<span>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.92332 2.96885C9.63854 2.66807 9.1768 2.66807 8.89202 2.96885C8.60723 3.26963 8.60723 3.75729 8.89202 4.05807L11.6958 7.01931H1.48616C1.08341 7.01931 0.756918 7.36413 0.756918 7.7895C0.756918 8.21487 1.08341 8.5597 1.48616 8.5597H11.8436L8.89202 11.677C8.60723 11.9778 8.60723 12.4654 8.89202 12.7662C9.1768 13.067 9.63854 13.067 9.92332 12.7662L14.0459 8.41213C14.3307 8.11135 14.3307 7.62369 14.0459 7.32291L13.977 7.25011C13.9737 7.24661 13.9704 7.24315 13.9671 7.23972L9.92332 2.96885Z"
></path>
</svg>
</span>
</button>
<button class="cart-compare-btn">Compare Pakages</button>
</div>
</div>
</div>
</div>
<!-- faq -->
<div id="cart-page-faq"></div>
<!-- footer -->
<div id="footer"></div>
</body>
</html>
<script src="../script/cart.js"></script>
<!-- footer -->
<script type="module">
import { footer } from "../script/footer.js";
import navbar_imp from "../components/navbar_exp.js";
document.getElementById("cartnavbar").innerHTML = navbar_imp();
document.getElementById("footer").innerHTML = footer();
</script>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$( function ()
{
$( "#cart-page-faq" ).load( "graphic-design-faq.html" );
} );
</script>
<script src="../script/signup_login.js"></script>