forked from Rakesh9100/CalcDiverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1489 lines (1469 loc) · 74.6 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" />
<link rel="icon" href="./assets/images/favicon.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="./style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"/>
<title>CalcDiverse</title>
</head>
<body>
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<!-- Navigation bar section start -->
<header>
<nav class="navbar">
<div class="image-logo">
<a href="./index.html">
<img src="./assets/images/favicon.png" height="36px" width="36px">
</a>
<a href="./index.html">
<span class="logo">CalcDiverse</span>
</a>
</div>
<ul class="nav-menu">
<li class="nav-item">
<a href="#home" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#calculators" class="nav-link">Calculators</a>
</li>
<li class="nav-item">
<a href="./assets/contributors/contributor.html" class="nav-link">Contributors</a>
</li>
<li class="nav-item">
<a href="./assets/contact/contact.html" class="nav-link">Contact</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</header>
<!-- Navigation bar section ends -->
<!-- Hero Section Starts here -->
<section class="comp-section" id="home">
<div class="compcontainer">
<div class="logo">
<img src="./assets/images/logo.png" alt="CalcDiverse Logo">
</div>
<h1>CalcDiverse</h1>
<h3>All calculators, spot in a single place!!</h3>
<p class="paragraph">
CalcDiverse is a customized collection of calculators for various aspects of mathematics. Individuals
with basic web development knowledge can create distinctive calculators and submit pull requests.
</p>
<a href="#calculators">
<button class="started">Explore Calculators >></button>
</a>
</div>
</section>
<!-- Hero Section Ends here -->
<!-- Calculator Section Starts Here -->
<div class="container" id="calculators">
<!-- Search Bar -->
<div id="searchBar">
<h1>Search Calculator</h1><br>
<input type="text" id="calculatorSearch" placeholder="Enter Calculator Name" oninput="filterCalculators()">
</div>
<div class="box">
<div class="content">
<h2>2D Shapes Calculator</h2>
<h3>Calculates the area and perimeter of different useful 2D shapes.</h3>
<div class="card-footer">
<a href="./Calculators/2D-Shapes-Calculator/2D-Shapes-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/2D-Shapes-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>3D Shapes Volume Calculator</h2>
<h3>Calculates the volume of different important and useful 3D shapes.</h3>
<div class="card-footer">
<a href="./Calculators/3D-Shapes-Volume-Calculator/3D-Shapes-Volume-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/3D-Shapes-Volume-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Age Calculator</h2>
<h3>Calculates the person's age by taking in the date of birth as input.</h3>
<div class="card-footer">
<a href="./Calculators/Age-Calculator/Age-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Age-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Basic Calculator</h2>
<h3>Basic old school calculator for simple calculations</h3>
<div class="card-footer">
<a href="./Calculators/Basic-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Basic-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>BMI Calculator</h2>
<h3>Calculates the Body Mass Index of a person using Height & Weight.</h3>
<div class="card-footer">
<a href="./Calculators/BMI-Calculator/BMI-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/BMI-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Clothing Size Calculator</h2>
<h3>Inter-converts clothing sizes from one country to another, the international size, and the exact measurements for each size.</h3>
<div class="card-footer">
<a href="./Calculators/Clothing-Size-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Clothing-Size-Calculator/" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Color Code Calculator</h2>
<h3>Interconverts color codes among RGB, RGBA, HEX (Hexadecimal), HSL, HSV and CMYK</h3>
<div class="card-footer">
<a href="./Calculators/Color-Code-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Color-Code-Calculator/" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Currency Calculator</h2>
<h3>Converts the value of one Currency unit into another Currency unit.</h3>
<div class="card-footer">
<a href="./Calculators/Currency-Calculator/Currency-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Currency-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Degree Radian Calculator</h2>
<h3>Converts the Degree into Radian and vice-versa.</h3>
<div class="card-footer">
<a href="./Calculators/Degree-Radian-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Degree-Radian-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Multiplication Table Calculator</h2>
<h3>Calculates the multiplication table of any number.</h3>
<div class="card-footer">
<a href="./Calculators/Multiplication-Table-Calculator/Multiplication-Table-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Multiplication-Table-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</div>
</a>
</div>
</div>
<div class="box">
<div class="content">
<h2>Number of Days Calculator</h2>
<h3>Calculates the number of days between two specified dates.</h3>
<div class="card-footer">
<a href="./Calculators/Number-of-Days-Calculator/Number-of-Days-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Number-of-Days-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Logarithm Calculator</h2>
<h3>Calculates the log of the given number to any base.</h3>
<div class="card-footer">
<a href="./Calculators/Logarithm-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Logarithm-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>AntiLog Calculator</h2>
<h3>Calculates the antilog of the any given number taken over any base.</h3>
<div class="card-footer">
<a href="./Calculators/Antilog-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Antilog-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>GPA Calculator</h2>
<h3>Calculates SGPA and CGPA on the basis of credits and grades.</h3>
<div class="card-footer">
<a href="./Calculators/GPA-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/GPA-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Length Calculator</h2>
<h3>Calculates the length conversion between two specified units.</h3>
<div class="card-footer">
<a href="./Calculators/Length-Calculator/Length.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Length-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Subject Grade Calculator</h2>
<h3>Calculates the grade based on marks entered.</h3>
<div class="card-footer">
<a href="./Calculators/Grade-Calculator/grade.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Grade-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</div>
</a>
</div>
</div>
<div class="box">
<div class="content">
<h2>Statistics Calculator</h2>
<h3>Calculates Maximum, minimum, mean, median, mode, etc.</h3>
<div class="card-footer">
<a href="./Calculators/Statistics-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Statistics-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Sunrise & Sunset Calculator</h2>
<h3>This Calculates approximate about when the sun will rise and set at that particular point on the Earth's surface.</h3>
<div class="card-footer">
<a href="./Calculators/Sunrise-Sunset-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Sunrise-Sunset-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Differential Calculator</h2>
<h3>Evaluates derivatives and mathematical functions.</h3>
<div class="card-footer">
<a href="./Calculators/Differential-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Differential-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Time Calculator</h2>
<h3>Calculates Hours, Minutes, Seconds for any entered time.</h3>
<div class="card-footer">
<a href="./Calculators/Time-Calculator/Time-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Time-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Water Intake Calculator</h2>
<h3>Calculate Daily Water Intake based on Weight, Activity, Weather</h3>
<div class="card-footer">
<a href="./Calculators/Water-Intake-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Water-Intake-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Trigonometric Calculator</h2>
<h3>Calculates trigonometric functions and inverses.</h3>
<div class="card-footer">
<a href="./Calculators/Trigonometric-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Trigonometric-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Percentage To Fraction Calculator</h2>
<h3>Converts given Percentage to Fraction with detailed solution.</h3>
<div class="card-footer">
<a href="./Calculators/Percentage-To-Fraction-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Percentage-To-Fraction-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Mass Calculator</h2>
<h3>Calculates the Mass conversion between two specified units.</h3>
<div class="card-footer">
<a href="./Calculators/Mass-Calculator/Mass-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Mass-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Factorial Calculator</h2>
<h3>Calculates the factorial of any large number instantly.</h3>
<div class="card-footer">
<a href="./Calculators/Factorial-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Factorial-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>N-th Fibonacci Calculator</h2>
<h3>Calculates the Nth number from Fibonacci Sequence.</h3>
<div class="card-footer">
<a href="./Calculators/Fibonacci-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Fibonacci-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Weight Calculator</h2>
<h3>Calculates weight from kgs to pounds and vice-versa.</h3>
<div class="card-footer">
<a href="./Calculators/Weight-Calculator/Weight-calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Weight-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Pressure Calculator</h2>
<h3>Calculates the Pressure conversion between two specified units.</h3>
<div class="card-footer">
<a href="./Calculators/Pressure-Calculator/Pressure.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Pressure-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Prime Factorization Calculator</h2>
<h3>Calculates the prime factors of the given number.</h3>
<div class="card-footer">
<a href="./Calculators/Prime-Factorization-Calculator/index.html " target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Prime-Factorization-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>4 Band Resistance Calculator</h2>
<h3>Calculate the theoretical resistance of a 4-band resistor.</h3>
<div class="card-footer">
<a href="./Calculators/4-Band-Resistance-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/4-Band-Resistance-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Square Root Calculator</h2>
<h3>Calculates the square root of a number instantly.</h3>
<div class="card-footer">
<a href="./Calculators/Square-Root-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Square-Root-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Triangle Calculator</h2>
<h3>Calculates the different results of a triangle based on input sides.</h3>
<div class="card-footer">
<a href="./Calculators/Triangle-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Triangle-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Percentage Calculator</h2>
<h3>Calculates the value percentage of any given number.</h3>
<div class="card-footer">
<a href="./Calculators/Percentage-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Percentage-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Data Size Calculator</h2>
<h3>Converts input data size to other data sizes instantly.</h3>
<div class="card-footer">
<a href="./Calculators/Data-Size-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Data-Size-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Definite Integral Calculator</h2>
<h3>Evaluates Integral of Mathematical Functions with Definite Limits.</h3>
<div class="card-footer">
<a href="./Calculators/Definite-Integral-Calculator/Definite-Integral-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Definite-Integral-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Bitwise Calculator</h2>
<h3>Calculates results of different bitwise operations based on inputs.</h3>
<div class="card-footer">
<a href="./Calculators/Bitwise-Calculator/Bitwise-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Bitwise-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Calorie Intake Calculator</h2>
<h3>Calculates daily calorie intake based on given inputs.</h3>
<div class="card-footer">
<a href="./Calculators/Calorie-Intake-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Calorie-Intake-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Day From The Date Calculator</h2>
<h3>Calculates the day for the specified date.</h3>
<div class="card-footer">
<a href="./Calculators/Day-From-The-Date-Calculator/Day-From-The-Date-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Day-From-The-Date-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Temperature Calculator</h2>
<h3>Calculates the Temperature conversion between two specified units.</h3>
<div class="card-footer">
<a href="./Calculators/Temperature-Calculator/Temperature-Calculator.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Temperature-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Permutation and Combination Calculator</h2>
<h3>Calculates nPr and nCr after taking inputs as n and r.</h3>
<div class="card-footer">
<a href="./Calculators/Permutation-Combination-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Permutation-Combination-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Systematic Investment Plan Calculator</h2>
<h3>Calculator that gives an idea of the returns on their mutual fund investments made through SIP.</h3>
<div class="card-footer">
<a href="./Calculators/Systematic-Investment-Plan-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Systematic-Investment-Plan-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Bill Split Calculator</h2>
<h3>Effortlessly split bills with our calculator. Simplify expense sharing now!</h3>
<div class="card-footer">
<a href="./Calculators/Bill-Split-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Bill-Split-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Simple Interest Calculator</h2>
<h3>Calculates the simple interest.</h3>
<div class="card-footer">
<a href="./Calculators/Simple-Interest-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Simple-Interest-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>GCD Calculator</h2>
<h3>Calculates Greatest Common Divisor of Two values or multiple values .</h3>
<div class="card-footer">
<a href="./Calculators/GCD-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/GCD-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>LCM Calculator</h2>
<h3>Calculates LCM of multiple numbers.</h3>
<div class="card-footer">
<a href="./Calculators/LCM-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/LCM-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Fuel Efficiency Calculator</h2>
<h3>Calculates efficiency of the vehicle</h3>
<div class="card-footer">
<a href="./Calculators/Fuel-Efficiency-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Fuel-Efficiency-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Square Cube Calculator</h2>
<h3>Calculates square and cube of a number.</h3>
<div class="card-footer">
<a href="./Calculators/Square-Cube-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Square-Cube-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Exponent Calculator</h2>
<h3>Which takes two numbers X and Y and then calculate X<sup>Y</sup>.</h3>
<div class="card-footer">
<a href="./Calculators/Exponent-Calculator/Exponent.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Exponent-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Linear Equation Calculator</h2>
<h3>Calculates values of variables from linear equation in two variables.</h3>
<div class="card-footer">
<a href="./Calculators/Linear-Equation-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Linear-Equation-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Quadratic Equation Calculator</h2>
<h3>Calculates the roots of a quadratic equation.</h3>
<div class="card-footer">
<a href="./Calculators/Quadratic-Equation-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Quadratic-Equation-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Cubic Equation Calculator</h2>
<h3>solves cubic equations, providing real or complex solutions</h3>
<div class="card-footer">
<a href="./Calculators/Cubic-Equation-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Cubic-Equation-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Compound Interest Calculator</h2>
<h3>Takes Principal amount, time in years, interest rate and Gives compound interest</h3>
<div class="card-footer">
<a href="./Calculators/Compound-Interest-Calculator/Compound.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Compound-Interest-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Sleep Calculator</h2>
<h3>Calculates the amount of sleep required based on age and activity level.</h3>
<div class="card-footer">
<a href="./Calculators/Sleep-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Sleep-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Discount Calculator</h2>
<h3>Unlock Savings with Precision: Your Ultimate Discount Calculator!</h3>
<div class="card-footer">
<a href="./Calculators/Discount-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Discount-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Pythagoras Calculator</h2>
<h3>Which takes two sides of right-angled triangle and gives third side.</h3>
<div class="card-footer">
<a href="./Calculators/Pythagoras-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Pythagoras-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Matrix Calculator</h2>
<h3>Your key to matrix operations!</h3>
<div class="card-footer">
<a href="./Calculators/Matrix-Calculator/matrix.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Matrix-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Rectangular To Polar Calculator</h2>
<h3>Converts rectangular form into polar form.</h3>
<div class="card-footer">
<a href="./Calculators/Rectangular-To-Polar-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Rectangular-To-Polar-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Ratio Calculator</h2>
<h3>Which takes two numbers X and Y and then calculate X / Y.</h3>
<div class="card-footer">
<a href="./Calculators/Ratio-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Ratio-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>CSS Unit Calculator</h2>
<h3>Converts various css units.</h3>
<div class="card-footer">
<a href="./Calculators/CSS-Unit-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/CSS-Unit-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Proportionality Calculator</h2>
<h3>Input three values to compute the fourth, showcasing proportionality..</h3>
<div class="card-footer">
<a href="./Calculators/Proportionality-Calculator/Proportionality.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Proportionality-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Arithmetic Progression Calculator</h2>
<h3>Calculates nth Term and sum of n Terms present in an Arithmetic Sequence.</h3>
<div class="card-footer">
<a href="./Calculators/Arithmetic-Progression-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Arithmetic-Progression-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Geometric Progression Calculator</h2>
<h3>Calculates nth Term and sum of n Terms present in an Geometric Sequence.</h3>
<div class="card-footer">
<a href="./Calculators/Geometric-Progression-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Geometric-Progression-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Harmonic Progression Calculator</h2>
<h3>Calculates the nth term of Harmonic Progression series.</h3>
<div class="card-footer">
<a href="./Calculators/Harmonic-Progression-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Harmonic-Progression-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Time Zone Calculator</h2>
<h3>Instantly find the time difference anywhere in the world.</h3>
<div class="card-footer">
<a href="./Calculators/Time-Zone-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Time-Zone-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Heart Rate Calculator</h2>
<h3>To Calculate Heart Rate Monitors</h3>
<div class="card-footer">
<a href="./Calculators/Heart-Rate-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Heart-Rate-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Real Estate Calculator</h2>
<h3>This tool allows users to input property details and obtain essential information for financial planning.</h3>