-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (113 loc) · 5.31 KB
/
index.html
File metadata and controls
133 lines (113 loc) · 5.31 KB
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
<!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="stylesheet" href="./CSS/Home.css">
<link rel="stylesheet" href="./CSS/logo.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<title>All~Calc</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light text-white bg-need" style="height: 70px;">
<a class=" navbar-brand" href="#" style="color: darkgray;"><h1>All~Calc</h1></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active col-2 text-right">
<a class="nav-link"> <h2> About</h2> </a>
</li>
</ul>
<i class="ri-moon-fill text-dark"></i>
</div>
</nav>
<!-- front-page -->
<div class="m-5">
<div class="bodyhead padding" style="color: #121330;">
All~Calc
</div>
<div class="info">
This is multi function calculator web page calculate anything as per requirement.
</div>
</div>
<div class="row text-light">
<div class="card space col-md-4" style="height: 16rem;">
<div class="card-body">
<h3 class="card-title text-center">Temperature</h3>
<h4 class="card-text text-center">Here you can convert the Temperature celsius to fahrenheit or vice versa.</h4>
<div class="text-center">
<a href="temparature_converter.html" class="btn btn-primary">TRY NOW</a>
</div>
</div>
</div>
<div class="card space col-md-4" style="height: 16rem;">
<div class="card-body">
<h3 class="card-title text-center">Factorial</h3>
<h4 class="card-text text-center">Here you can find the factorial to a number.</h4>
<div class="text-center">
<a href="factorial.html" class="btn btn-primary">TRY NOW </a>
</div>
</div>
</div>
<div class="card space col-md-4" style="height: 16rem;">
<div class="card-body">
<h3 class="card-title text-center">Power</h3>
<h4 class="card-text text-center">Here you can find value of n to the power m.</h4>
<div class="text-center">
<a href="power.html" class="btn btn-primary">TRY NOW </a>
</div>
</div>
</div>
<div class="card space col-md-4" style="height: 16rem;">
<div class="card-body">
<h3 class="card-title text-center">Simple Interst</h3>
<h4 class="card-text text-center">Here you can calculate Simple Interst with repect to Principal, Time and Rate of Interst.</h4>
<div class="text-center">
<a href="interest.html" class="btn btn-primary">TRY NOW </a>
</div>
</div>
</div>
<div class="card space col-md-4" style="height: 16rem;">
<div class="card-body">
<h3 class="card-title text-center">Currency Converter</h3>
<h4 class="card-text text-center">Here you can make conversion between currencies.</h4>
<div class="text-center">
<a href="currency-covert.html" class="btn btn-primary">TRY NOW </a>
</div>
</div>
</div>
<div class="card space col-md-4" style="height: 16rem;">
<div class="card-body">
<h3 class="card-title text-center">Bitwise calculator</h3>
<h4 class="card-text text-center">Here you can calculate Bitwise operations between 2 numbers.</h4>
<div class="text-center">
<a href="Bitwise.html" class="btn btn-primary">TRY NOW </a>
</div>
</div>
</div>
<div class="card space col-md-4" style="height: 16rem;">
<div class="card-body">
<h3 class="card-title text-center">Trigonometric</h3>
<h4 class="card-text text-center">Here you can calculate trigonometric function.</h4>
<div class="text-center">
<a href="trigonmetry.html" class="btn btn-primary">TRY NOW </a>
</div>
</div>
</div>
</div>
<!-- !-- footer -->
<div class="bg-info footer text-center card-footer bg-need ">
<div> All rights reserved by All~calc
<spam id="copy" class="text-center"></spam> </div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script>
let y=new Date().getFullYear();
document.getElementById("copy").innerHTML = `<i class="ri-copyright-line"></i> ${y}`;
</script>
</body>
</html>