forked from Rakesh9100/CalcDiverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
183 lines (158 loc) · 8.17 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
<!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>
<!-- Inside your navigation menu, update the href attribute for the Contact link -->
<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>
<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 class="box">
<div class="content">
<h2>GPA Calculator</h2>
<h3>Calculates SGPA and CGPA on the basis of given credits and grades.</h3>
<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>
<!-------------------------------------Footer Code Starts --------------------------------------------->
<div class="footer-basic">
<footer>
<div class="social">
<a href="https://www.portfolio.com/" target="_blank"> <!--Add Your Portfolio Website Link -->
<img src="/assets/profile.png" alt="Profile">
</a>
<a href="https://www.gmail.com/" target="_blank"> <!--Add Your Gmail Link -->
<img src="/assets/gmail.png" alt="Gmail">
</a>
<a href="https://www.twitter.com/" target="_blank"> <!--Add Your Twitter Link -->
<img src="/assets/twitter.png" alt="Twitter">
</a>
<a href="https://www.facebook.com/" target="_blank"> <!--Add Your Facebook Link -->
<img src="/assets/facebook.png" alt="Facebook">
</a>
<a href="https://www.github.com/" targer="_blank"> <!--Add Your Github Link -->
<img src="/assets/github.png" alt="Github">
</a>
</div>
<ul class="list-inline">
<!--Add or remove the following contents according to your requirements-->
<li class="list-inline-item"><a href="#home">Home</a></li> <!-- Enter your page links-->
<li class="list-inline-item"><a href="#calculators">Calculators</a></li> <!-- Enter your page links-->
<li class="list-inline-item"><a href="./assets/contact/contact.html">Contact</a></li> <!-- Enter your page links-->
</ul>
<p class="copyright">Created By Rakesh Roshan ❤️ | © 2023: All Rights Reserved</p>
</footer>
</div>
<!------------------------------------------- Footer Code Ends----------------------------------->
<script src="./script.js"></script>
</body>
</html>