forked from Rakesh9100/CalcDiverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (128 loc) · 5.82 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
<!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/5.15.3/css/all.min.css">
<title>CalcDiverse</title>
</head>
<body>
<header>
<nav class="navbar">
<a href="./index.html">
<div class="logo">CalcDiverse</div>
</a>
<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>
<a href="#" 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>
<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">Use Calculators >></button>
</a>
</div>
</section>
<div class="container" id="calculators">
<div class="box">
<div class="content">
<h2>3D Shapes Volume Calculator</h2>
<h3>Calculates the volume of different important and useful 3D shapes.</h3>
<a href="./Calculators/3D-Shapes-Volume-Calculator/index.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 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>
<a href="./Calculators/Age-Calculator/index.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 class="box">
<div class="content">
<h2>Currency Calculator</h2>
<h3>Converts the value of one Currency unit into another Currency unit.</h3>
<a href="./Calculators/Currency-Converter-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Currency-Converter-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
<div class="box">
<div class="content">
<h2>Multiplication Table Calculator</h2>
<h3>Calculates the multiplication table of any number.</h3>
<a href="./Calculators/Multiplication-Table-Calculator/index.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>
</a>
</div>
</div>
<div class="box">
<div class="content">
<h2>Number of Days Calculator</h2>
<h3>Calculates the number of days between two particular specified dates.</h3>
<a href="./Calculators/Number-of-Days-Calculator/index.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="footer" id="about">
<footer>
<ul class="social-icon">
<li>
<a href="https://rakesh9100.bio.link/" target="_blank"><i class="fas fa-link"></i></a>
</li>
<li>
<a href="mailto:[email protected]" target="_blank"><i class="fas fa-envelope"></i></a>
</li>
</ul>
<p>Created By <a href="https://github.com/Rakesh9100" target="_blank">Rakesh Roshan ❤️</a> | © 2023: All Rights Reserved</p>
</footer>
</div>
<script src="./script.js"></script>
</body>
</html>