-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
181 lines (179 loc) · 6.87 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
<!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>Calculator</title>
<link rel="stylesheet" href="styles/style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div id="navbarContainer" class="container-fluid">
<div id="navbarSupportedContent">
<a class="nav-link px-3" href="index.html">
<i id="home-page" class="fa-solid fa-house"></i>
</a>
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Other Calculators
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="html/Calculator.html"
>Calculator</a
>
</li>
<li>
<a class="dropdown-item" href="html/AgeCalculator.html"
>Age Calculator</a
>
</li>
<li>
<a class="dropdown-item" href="html/ConversionCalculator.html"
>Conversion Calculator</a
>
</li>
<li>
<a
class="dropdown-item"
href="html/RandomNumberGenerator.html"
>Random Number Generator</a
>
</li>
<li>
<a
class="dropdown-item"
href="html/RandomPasswordGenerator.html"
>Random Password Generator</a
>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<section class="container mt-3">
<h1 class="text-center">Calculator</h1>
<p class="lead mt-3 text-center">
Welcome to Calculator Website. This is a calculation website where you
can do a lot of operations.
</p>
<div id="home-row" class="row">
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-10 mt-3">
<div class="card card-deck d-flex flex-wrap" style="width: 18rem">
<i class="fa-solid fa-calculator fa-5x text-center mt-3"></i>
<div class="card-body">
<h5 class="card-title text-center">Calculator</h5>
<p class="card-text lead text-center">
Calculate your mathematical operations
</p>
<a
href="html/Calculator.html"
class="btn btn-primary d-flex justify-content-center"
>Calculator Page</a
>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-10 mt-3">
<div class="card card-deck d-flex flex-wrap" style="width: 18rem">
<i class="fa-regular fa-calendar-days fa-5x text-center mt-3"></i>
<div class="card-body">
<h5 class="card-title text-center">Age Calculator</h5>
<p class="card-text lead text-center">
Calculates the age difference between two dates
</p>
<a
href="html/AgeCalculator.html"
class="btn btn-primary d-flex justify-content-center"
>Age Calculator Page</a
>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-10 mt-3">
<div class="card card-deck d-flex flex-wrap" style="width: 18rem">
<i class="fa-solid fa-ruler-combined fa-5x text-center mt-3"></i>
<div class="card-body">
<h5 class="card-title text-center">Conversion Calculator</h5>
<p class="card-text lead text-center">
Convert between commonly used units
</p>
<a
href="html/ConversionCalculator.html"
class="btn btn-primary d-flex justify-content-center"
>Conversion Calculator Page</a
>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-10 mt-3">
<div class="card card-deck d-flex flex-wrap" style="width: 18rem">
<i class="fa-solid fa-1 fa-5x text-center mt-3"></i>
<div class="card-body">
<h5 class="card-title text-center">Random Number Generator</h5>
<p class="card-text lead text-center">
Returns a random number between two numbers
</p>
<a
href="html/RandomNumberGenerator.html"
class="btn btn-primary d-flex justify-content-center"
>Random Number Generator</a
>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-10 mt-3">
<div class="card card-deck d-flex flex-wrap" style="width: 18rem">
<i class="fa-solid fa-unlock-keyhole fa-5x text-center mt-3"></i>
<div class="card-body">
<h5 class="card-title text-center">Random Password Generator</h5>
<p class="card-text lead text-center">
Returns a random password
</p>
<a
href="html/RandomPasswordGenerator.html"
class="btn btn-primary d-flex justify-content-center"
>Random Password Generator</a
>
</div>
</div>
</div>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
<script>
$(function () {
$(".card").matchHeight();
});
</script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"
></script>
</body>
</html>