-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
759 lines (700 loc) · 33.8 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
<!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>Clev Calc</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="icon" type="image/x-icon" href="/images/logo.png">
<link rel="stylesheet" href="./footer.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap">
<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=Raleway:wght@500&display=swap" rel="stylesheet">
<link rel="icon" href="https://www.allinonecalculator.com/images/logo.png" type="image/icon type">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<style>
/* stylic changes*/
#background {
z-index: -1;
display: none;
}
.title:hover {
display: inline-block;
animation: rubberBand;
/* referring directly to the animation's @keyframe declaration */
animation-duration: 2s;
/* don't forget to set a duration! */
}
.footer-section a:hover {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
* {
scroll-behavior: smooth;
}
img {
display: flex;
align-items: center;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
p,
h3 {
font-family: 'Quicksand', sans-serif;
}
h3 {
font-weight: 600;
}
.overlay {
background-color: rgba(0, 0, 0, 0.5);
position: fixed;
inset: 0;
z-index: 40;
transition: background-color 0.3s ease;
}
.cool-box {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-top: -60px;
/* Adjust the margin-top value based on your design */
z-index: 1;
/* Ensure the cool box appears above the background */
}
.bg-white {
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.1);
}
#content {
width: 105%;
}
.features-section {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-left: 190px;
/* Adjust the gap between items as needed */
/* Responsive layout for mobile */
@media (max-width: 768px) {
grid-template-columns: 1fr;
margin: 18px;
/* One column in mobile view */
}
/* Responsive layout for tablets */
@media (min-width: 768px) and (max-width: 1024px) {
grid-template-columns: repeat(2, 1fr);
margin: 40px;
/* Three columns in tablet view */
}
}
.feature {
/* Your styling for each feature item */
border: 1px solid #ccc;
padding: 20px;
text-align: center;
margin: 0 55px;
/* Adjust left and right margin as needed */
box-sizing: border-box;
/* Include padding and border in the total width */
}
/* Adjust the margin-top for larger screens */
@media (min-width: 768px) {
.cool-box {
margin-top: -30px;
}
}
@media (min-width: 0px) and (max-width: 426px) {
#background {
z-index: -1;
display: block;
width: 1300px;
height: 500px;
margin-top: -75%;
}
}
@media (min-width:427px) and (max-width: 768px) {
#background {
z-index: -1;
display: block;
width: 1200px;
height: 900px;
margin-top: -60%;
}
}
@media screen and (min-width: 769px) and (max-width:1024px) {
#content {
margin-left: 10%;
margin-right: 20%;
width: 1000px;
}
}
#scrooling {
position: fixed;
bottom: 10px;
/* Adjust this value as needed */
right: 10px;
/* Adjust this value as needed */
z-index: 999;
}
*,
*::before,
*::after {
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
overflow-x: hidden;
/* Prevent horizontal overflow */
}
</style>
</head>
<body class="bg-gray-800">
<div id="home" class="bg-black text-white p-4">
<header class="absolute inset-x-0 top-0 z-50">
<nav class="flex items-center justify-between p-6 lg:px-8" aria-label="Global">
<div class="flex lg:flex-shrink-0">
<a href="#" class="-m-1.5 p-1.5">
<span class="sr-only">Your Company</span>
<img class="h-8 w-auto" src="https://www.allinonecalculator.com/images/logo.png" alt="">
</a>
</div>
<div class="hidden lg:flex lg:items-center lg:space-x-4">
<!-- Desktop navigation links -->
<a href="./index.html" class="text-white hover:text-purple-500 hover:font-semibold"
style="font-family: 'Raleway', sans-serif;">Home</a>
<a href="#about" class="text-white hover:text-purple-500 hover:font-semibold"
style="font-family: 'Raleway', sans-serif;">About</a>
<a href="#features" class="text-white hover:text-purple-500 hover:font-semibold"
style="font-family: 'Raleway', sans-serif;">Features</a>
<a href="#contact" class="text-white hover:text-purple-500 hover:font-semibold"
style="font-family: 'Raleway', sans-serif;">Contact</a>
</div>
<div class="flex lg:hidden">
<button id="mobileMenuButton" type="button"
class="-m-2.5 inline-flex items-center justify-center rounded-md p-2.5 text-gray-700">
<span class="sr-only">Open main menu</span>
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
</svg>
</button>
</div>
</nav>
<!-- Mobile menu, show/hide based on menu open state. -->
<div id="mobileMenu" class="lg:hidden fixed inset-0 z-50 hidden">
<!-- Background backdrop with overlay class -->
<div class="overlay"></div>
<div
class="fixed inset-y-0 right-0 z-50 w-full overflow-y-auto bg-white px-6 py-6 sm:max-w-sm sm:ring-1 sm:ring-gray-900/10">
<div class="flex items-center justify-between">
<a href="#" class="-m-1.5 p-1.5">
<span class="sr-only">Your Company</span>
<img class="h-8 w-auto" src="https://www.allinonecalculator.com/images/logo.png" alt="">
</a>
<button id="closeMobileMenu" type="button" class="text-gray-700 hover:text-gray-900 focus:outline-none">
<span class="sr-only">Close menu</span>
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div class="mt-6 flow-root">
<div class="-my-6 divide-y divide-gray-500/10">
<div class="space-y-2 py-6">
<a href="./index.html"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50"
style="font-family: 'Raleway', sans-serif;">Home</a>
<a href="#about"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50"
style="font-family: 'Raleway', sans-serif;">About</a>
<a href="#features"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50"
style="font-family: 'Raleway', sans-serif;">Features</a>
<a href="#contact"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50"
style="font-family: 'Raleway', sans-serif;">Contact</a>
</div>
<div class="py-6">
<a href="#contact"
class="-mx-3 block rounded-lg px-3 py-2.5 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50 hover:bg-blue-700"
style="font-family: 'Raleway', sans-serif;">Log in</a>
</div>
</div>
</div>
</div>
</div>
</header>
<div id="content" class="relative isolate px-6 pt-14 lg:px-0 flex">
<!-- Content on the left -->
<div class="mx-auto max-w-2xl py-32 sm:py-48 lg:py-56">
<!-- Existing content -->
<div class="hidden sm:mb-8 sm:flex sm:justify-center">
<div
class="relative rounded-full px-3 py-1 text-sm leading-6 text-white-600 ring-1 ring-white-900/10 hover:ring-white-900/20 animate_animated animate_fadeLeft">
The Orignal. <a href="#about" class="font-semibold text-indigo-600"><span class="absolute inset-0"
aria-hidden="true"></span>Read more <span aria-hidden="true">→</span></a>
</div>
</div>
<div class="text-center">
<h1
class="text-4xl font-bold tracking-tight text-white-900 sm:text-6xl animate__animated animate__lightSpeedInLeft"
style="color: white;">
<span class="title text-6xl">C</span><span class="title text-6xl">l</span><span
class="title text-6xl">e</span><span class="title text-6xl">v</span>
<span class="title text-6xl">C</span><span class="title text-6xl">a</span><span
class="title text-6xl">l</span><span class="title text-6xl">c</span>
</h1>
<p class="mt-6 text-lg leading-8 text-white-600 animate__animated animate__lightSpeedInLeft"
style="color: white;">The Engineering
calculator</p>
<div class="mt-10 flex items-center justify-center gap-x-6">
<a href="./algebra.html"
class="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
style="color: white;">Get
started</a>
<a href="#about" class="text-sm font-semibold leading-6 text-white-900" style="color: white;">Learn more
<span aria-hidden="true">→</span></a>
</div>
<br/>
<br />
<br /><br />
<div>
<p class="text-lg"><i>"A tool that simplifies your life, the Clev-Calc is more than just numbers—it's your go-to for everything
from quick calculations to complex conversions. Whether you're crunching digits, converting currencies, or measuring
areas and volumes, this calculator does it all with ease and precision."</i></p>
</div>
<img id="background" src="./images/back-5.gif" alt="">
<br />
<br />
<br />
</div>
</div>
<!-- Image on the right -->
<div class="hidden lg:block" style="overflow: hidden; width: 60%; height: 80vh;">
<script type="module" src="https://unpkg.com/@splinetool/viewer@1.9.12/build/spline-viewer.js"></script>
<spline-viewer url="https://prod.spline.design/ADZddN6RwK2OpbEv/scene.splinecode"></spline-viewer>
</div>
<div
class="absolute inset-x-0 top-[calc(100%-13rem)] -z-10 transform-gpu overflow-hidden blur-3xl sm:top-[calc(100%-30rem)]"
aria-hidden="true">
</div>
</div>
</div>
<!-- Cool Box Shadow just below the image -->
<div data-aos="flip-left" class="cool-box container mx-auto mt-8 bg-gray-900 text-white" id="about"
style="font-family: 'Raleway', sans-serif;">
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6">
<!-- Column 1 -->
<div data-aos="fade-left" class="bg-gray-800 p-6 shadow-md rounded-md">
<!-- Content for Column 1 -->
<h1 class="font-bold text-3xl text-white mb-4" style="font-family: 'Raleway', sans-serif;">The mission? Make
the perfect calculator.</h1>
<img src="./images/feat1.png" alt="" class="w-full rounded-md shadow-md">
</div>
<!-- Column 2 -->
<div data-aos="fade-left" class="bg-gray-800 p-6 shadow-md rounded-md">
<!-- Content for Column 2 -->
<p class="text-white" style="font-family: 'Raleway', sans-serif;">All-In-One Calculator is a simple, clean,
and easy-to-use calculator with a complete set of tools for day-to-day life, such as a unit converter,
currency converter, percentage calculator, and more.</p>
<img src="./images/feat1.png" alt="" class="w-full rounded-md shadow-md mt-4">
</div>
<!-- Column 3 -->
<div data-aos="fade-left" class="bg-gray-800 p-6 shadow-md rounded-md">
<!-- Content for Column 3 -->
<p class="text-white" style="font-family: 'Raleway', sans-serif;">From simple or complex calculations to unit
and currency conversions, percentages, proportions, areas, volumes, etc., it does it all. And it does it good!
</p>
<img src="./images/feat1.png" alt="" class="w-full rounded-md shadow-md mt-4">
</div>
</div>
</div>
<br />
<br />
<br />
<br />
<div data-aos="slide-left" class="bg-white py-24 sm:py-32" style="font-family: 'Raleway', sans-serif;">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<dl class="grid grid-cols-1 gap-x-8 gap-y-16 text-center lg:grid-cols-3">
<div class="mx-auto flex max-w-xs flex-col gap-y-4">
<dt class="text-base leading-7 text-gray-600">Transactions every 24 hours</dt>
<dd class="order-first text-3xl font-semibold tracking-tight text-gray-900 sm:text-5xl">44 million</dd>
</div>
<div class="mx-auto flex max-w-xs flex-col gap-y-4">
<dt class="text-base leading-7 text-gray-600">Assets under holding</dt>
<dd class="order-first text-3xl font-semibold tracking-tight text-gray-900 sm:text-5xl">$119 trillion</dd>
</div>
<div class="mx-auto flex max-w-xs flex-col gap-y-4">
<dt class="text-base leading-7 text-gray-600">New users annually</dt>
<dd class="order-first text-3xl font-semibold tracking-tight text-gray-900 sm:text-5xl">46,000</dd>
</div>
</dl>
</div>
</div>
<br />
<br />
<br />
<br />
<div class="features-section" id="features">
<div data-aos="fade-right"
class="max-w-sm bg-white border border-white rounded-lg shadow dark:bg-gray-800 dark:border-white-700">
<a href="#">
<img class="rounded-t-lg" src="https://cdn-icons-png.flaticon.com/512/2231/2231643.png" alt=""
style="margin-left: 18px; margin-top:20px" width="90px" />
</a>
<div class="p-5">
<a href="./algebra.html">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">Algebra</h5>
</a>
<p class="mb-3 font-normal text-gray-700 dark:text-gray-400">Solve linear, quadratic or equation systems.
Calculate percentages, proportions and ratios. Find out means. Convert
decimals to fractions. Check prime numbers.</p>
<a href="./algebra.html"
class="inline-flex items-center px-3 py-2 text-sm font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
Read more
<svg class="rtl:rotate-180 w-3.5 h-3.5 ms-2" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 14 10">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9" />
</svg>
</a>
</div>
</div>
<div data-aos="fade-right"
class="max-w-sm bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-white-700">
<a href="#">
<img class="rounded-t-lg"
src="https://cdn-icons-png.flaticon.com/512/1080/1080982.png?ga=GA1.1.1368590504.1702805974" alt=""
style="margin-left: 18px; margin-top:20px" width="90px" />
</a>
<div class="p-5">
<a href="./geometry.html">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">Geometry</h5>
</a>
<p class="mb-3 font-normal text-gray-700 dark:text-gray-400">Calculate required dimensions for all the common 2D
shapes and 3D bodies using known variables. Solve the right
triangle. Get step by step solutions.</p>
<a href="./geometry.html"
class="inline-flex items-center px-3 py-2 text-sm font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
Read more
<svg class="rtl:rotate-180 w-3.5 h-3.5 ms-2" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 14 10">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9" />
</svg>
</a>
</div>
</div>
<div data-aos="fade-right"
class="max-w-sm bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-white-700">
<a href="#">
<img class="rounded-t-lg"
src="https://cdn-icons-png.flaticon.com/512/5065/5065419.png?ga=GA1.1.1368590504.1702805974" alt=""
style="margin-left: 18px; margin-top:20px" width="90px" />
</a>
<div class="p-5">
<a href="./unit-converter.html">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">Unit Converters</h5>
</a>
<p class="mb-3 font-normal text-gray-700 dark:text-gray-400">Easily convert between all the common units on the
same screen. Convert shoe and ring sizes, roman numerals or numeric
bases.</p>
<a href="./unit-converter.html"
class="inline-flex items-center px-3 py-2 text-sm font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
Read more
<svg class="rtl:rotate-180 w-3.5 h-3.5 ms-2" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 14 10">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9" />
</svg>
</a>
</div>
</div>
<!-- Repeat the structure for the next three elements -->
<div data-aos="fade-right"
class="max-w-sm bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-white-700">
<a href="./finance.html">
<img class="rounded-t-lg"
src="https://cdn-icons-png.flaticon.com/512/781/781760.png?ga=GA1.1.1368590504.1702805974" alt=""
style="margin-left: 18px; margin-top:20px" width="90px" />
</a>
<div class="p-5">
<a href="#">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">Finance</h5>
</a>
<p class="mb-3 font-normal text-gray-700 dark:text-gray-400">Convert up to +160 currencies, even offline.
Calculate sales tax and unit price. Find out the tip for a bill. Calculate
loan and interest.</p>
<a href="./finance.html"
class="inline-flex items-center px-3 py-2 text-sm font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
Read more
<svg class="rtl:rotate-180 w-3.5 h-3.5 ms-2" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 14 10">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9" />
</svg>
</a>
</div>
</div>
<div data-aos="fade-right"
class="max-w-sm bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-white-700">
<a href="#">
<img class="rounded-t-lg"
src="https://cdn-icons-png.flaticon.com/512/2927/2927071.png?ga=GA1.1.1368590504.1702805974" alt=""
style="margin-left: 18px; margin-top:20px" width="90px" />
</a>
<div class="p-5">
<a href="./health.html">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">Health</h5>
</a>
<p class="mb-3 font-normal text-gray-700 dark:text-gray-400">Calculate your body mass index. Calculate how much
calories you are burning in a day. Find out your body fat percentage.</p>
<a href="./health.html"
class="inline-flex items-center px-3 py-2 text-sm font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
Read more
<svg class="rtl:rotate-180 w-3.5 h-3.5 ms-2" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 14 10">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9" />
</svg>
</a>
</div>
</div>
<div data-aos="fade-right"
class="max-w-sm bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-white-700">
<a href="#">
<img class="rounded-t-lg"
src="https://cdn-icons-png.flaticon.com/512/4030/4030236.png?ga=GA1.1.1368590504.1702805974" alt=""
style="margin-left: 18px; margin-top:20px" width="90px" />
</a>
<div class="p-5">
<a href="./misc.html">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">Miscellaneous</h5>
</a>
<p class="mb-3 font-normal text-gray-700 dark:text-gray-400">Find out the distance in time between two dates.
Find out how old you are in years, months and days. Calculate your
car's mileage. Solve Ohm's law.</p>
<a href="./misc.html"
class="inline-flex items-center px-3 py-2 text-sm font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
Read more
<svg class="rtl:rotate-180 w-3.5 h-3.5 ms-2" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 14 10">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9" />
</svg>
</a>
</div>
</div>
</div>
<br />
<br />
<br />
<br />
<br />
<!--
This example requires some changes to your config:
```
// tailwind.config.js
module.exports = {
// ...
plugins: [
// ...
require('@tailwindcss/forms'),
],
}
```
-->
<div data-aos="zoom-in-left" class="isolate bg-white px-6 py-24 sm:py-32 lg:px-8" style="background-color: #f7f7f7;">
<div class="absolute inset-x-0 top-[-10rem] -z-10 transform-gpu overflow-hidden blur-3xl sm:top-[-20rem]"
aria-hidden="true">
</div>
<div class="mx-auto max-w-2xl text-center">
<h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">Contact</h2>
<p class="mt-2 text-lg leading-8 text-gray-600">Customer is the first priority even if its a small thing!!</p>
</div>
<form action="#" method="POST" class="mx-auto mt-16 max-w-xl sm:mt-20">
<div class="grid grid-cols-1 gap-x-8 gap-y-6 sm:grid-cols-2">
<div>
<label for="first-name" class="block text-sm font-semibold leading-6 text-gray-900">First name</label>
<div class="mt-2.5">
<input type="text" name="first-name" id="first-name" autocomplete="given-name"
class="block w-full rounded-md border-0 px-3.5 py-2 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
</div>
</div>
<div>
<label for="last-name" class="block text-sm font-semibold leading-6 text-gray-900">Last name</label>
<div class="mt-2.5">
<input type="text" name="last-name" id="last-name" autocomplete="family-name"
class="block w-full rounded-md border-0 px-3.5 py-2 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
</div>
</div>
<div class="sm:col-span-2">
<label for="company" class="block text-sm font-semibold leading-6 text-gray-900">Company</label>
<div class="mt-2.5">
<input type="text" name="company" id="company" autocomplete="organization"
class="block w-full rounded-md border-0 px-3.5 py-2 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
</div>
</div>
<div class="sm:col-span-2">
<label for="email" class="block text-sm font-semibold leading-6 text-gray-900">Email</label>
<div class="mt-2.5">
<input type="email" name="email" id="email" autocomplete="email"
class="block w-full rounded-md border-0 px-3.5 py-2 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
</div>
</div>
<div class="sm:col-span-2">
<label for="phone-number" class="block text-sm font-semibold leading-6 text-gray-900">Phone number</label>
<div class="relative mt-2.5">
<div class="absolute inset-y-0 left-0 flex items-center">
<label for="country" class="sr-only">Country</label>
<select id="country" name="country"
class="h-full rounded-md border-0 bg-transparent bg-none py-0 pl-4 pr-9 text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm">
<option>US</option>
<option>CA</option>
<option>EU</option>
</select>
<svg class="pointer-events-none absolute right-3 top-0 h-full w-5 text-gray-400" viewBox="0 0 20 20"
fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd"
d="M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z"
clip-rule="evenodd" />
</svg>
</div>
<input type="tel" name="phone-number" id="phone-number" autocomplete="tel"
class="block w-full rounded-md border-0 px-3.5 py-2 pl-20 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
</div>
</div>
<div class="sm:col-span-2">
<label for="message" class="block text-sm font-semibold leading-6 text-gray-900">Message</label>
<div class="mt-2.5">
<textarea name="message" id="message" rows="4"
class="block w-full rounded-md border-0 px-3.5 py-2 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"></textarea>
</div>
</div>
<div class="flex gap-x-4 sm:col-span-2">
<div class="flex h-6 items-center">
<!-- Enabled: "bg-indigo-600", Not Enabled: "bg-gray-200" -->
<button type="button"
class="bg-gray-200 flex w-8 flex-none cursor-pointer rounded-full p-px ring-1 ring-inset ring-gray-900/5 transition-colors duration-200 ease-in-out focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
role="switch" aria-checked="false" aria-labelledby="switch-1-label">
<span class="sr-only">Agree to policies</span>
<!-- Enabled: "translate-x-3.5", Not Enabled: "translate-x-0" -->
<span aria-hidden="true"
class="translate-x-0 h-4 w-4 transform rounded-full bg-white shadow-sm ring-1 ring-gray-900/5 transition duration-200 ease-in-out"></span>
</button>
</div>
<label class="text-sm leading-6 text-gray-600" id="switch-1-label">
By selecting this, you agree to our
<a href="#" class="font-semibold text-indigo-600">privacy policy</a>.
</label>
</div>
</div>
<div class="mt-10">
<button type="submit"
class="block w-full rounded-md bg-indigo-600 px-3.5 py-2.5 text-center text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">Let's
talk</button>
</div>
</form>
</div>
<footer class="footer" id="contact">
<div class="container">
<div class="col1">
<a href="./index.html" class="brand">Clev-Calc</a>
<ul class="media-icons">
<li>
<a href="https://www.youtube.com/channel/UC3Afh_9HnrccLCsfO9HSJfQ"><img src="./images/youtube.png" alt=""
width="25px"></a>
</li>
<li>
<a href="#"><img src="./images/discord.png" alt="" width="25px"></a>
</li>
<!-- <li>
<a href="https://www.instagram.com/ashish_4k_mx/"><i class="fi fi-brands-instagram"></i></a>
</li> -->
<li>
<a href="https://github.com/ashish4kmax"><img src="./images/github.png" alt="" width="25px"></a>
</li>
</ul>
</div>
<div class="col2">
<ul class="menu">
<li><a href="./index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#contact">Contact</a></li>
<p>We hope you liked our services any further questions can mail us in the given box.</p>
</ul>
</div>
<div class="col3">
<p>Subscribe to our newslatter</p>
<form>
<div class="input-wrap">
<input type="email" placeholder="ex@gmail.com" /><button type="submit"><i
class="fa-solid fa-paper-plane"></i></button>
</div>
</form>
<ul class="services-icons">
<li>
<a href="#"><i class="fa-brands fa-cc-paypal"></i></a>
</li>
<li>
<a href="#"><i class="fa-brands fa-cc-apple-pay"></i></a>
</li>
<li>
<a href="#"><i class="fa-brands fa-google-pay"></i></a>
</li>
<li>
<a href="#"><i class="fa-brands fa-cc-amazon-pay"></i></a>
</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<div class="mekk">
<p>@Clev Calc 2024 - All Rights Reserved</p>
</div>
<div id="scrooling">
<a href="#home"><img src="./images/scroll.png" alt="" width="50px"></a>
</div>
</div>
</footer>
<script>
document.getElementById('mobileMenuButton').addEventListener('click', function () {
document.getElementById('mobileMenu').classList.toggle('hidden');
document.querySelector('.overlay').classList.toggle('hidden');
});
document.getElementById('closeMobileMenu').addEventListener('click', function () {
document.getElementById('mobileMenu').classList.add('hidden');
document.querySelector('.overlay').classList.add('hidden');
});
</script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script>
// Get the mobile menu and close button elements
const mobileMenu = document.getElementById('mobileMenu');
const closeMobileMenuButton = document.getElementById('closeMobileMenu');
// Get all mobile navigation links
const mobileNavLinks = document.querySelectorAll('#mobileMenu a');
// Function to close the mobile menu
function closeMobileMenu() {
mobileMenu.classList.add('hidden');
}
// Add click event listener to each mobile navigation link
mobileNavLinks.forEach(link => {
link.addEventListener('click', closeMobileMenu);
});
// Add click event listener to the close button
closeMobileMenuButton.addEventListener('click', closeMobileMenu);
</script>
</body>
</html>