-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
146 lines (124 loc) · 4.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Calculator</title>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js" type="text/javascript"></script>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="style.css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
</head>
<body>
<header class="header-class">
<h1>CALCULATION TOOLS!!</h1>
<div class="scroll-down">
<a href="#components">
<h4>Scroll<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="red" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>Down</h4>
</a>
</div>
</header>
<main>
<section class="buttons">
<div class="container" id="components">
<div data-aos="fade-right">
<a href="Simple-Calculator/index.html">
<div class="card">
<span>Simple</span>
<span>Calculator</span>
</div>
</a>
</div>
<div data-aos="zoom-in">
<a href="Age-calculator/inex.html">
<div class="card">
<span>Age</span>
<span>Calculator</span>
</div>
</a>
</div>
<div data-aos="fade-left">
<a href="BMI-calculator/index.html">
<div class="card">
<span>BMI</span>
<span>Calculator</span>
</div>
</a>
</div>
<div data-aos="fade-right">
<a href="BMR-calculator/BMRCalculator.html">
<div class="card">
<span>BMR</span>
<span>Calculator</span>
</div>
</a>
</div>
<div data-aos="zoom-in">
<a href="Area-calculator/index.html">
<div class="card">
<span>Area</span>
<span>Calculator</span>
</div>
</a>
</div>
<div data-aos="fade-left">
<a href="Volume-Calculator/index.html">
<div class="card">
<span>Volume</span>
<span>Calculator</span>
</div>
</a>
</div>
<div data-aos="fade-right">
<a href="Interest-calculator/index.html">
<div class="card">
<span>Interest</span>
<span>Calculator</span>
</div>
</a>
</div>
<div data-aos="zoom-in">
<a href="Currency-converter/index.html">
<div class="card">
<span>Currency</span>
<span>Converter</span>
</div>
</a>
</div>
<div data-aos="fade-left">
<a href="CaeserCipher_Calculator/caesercipher.html">
<div class="card">
<span>CaeserCipher</span>
<span>Calculator</span>
</div>
</a>
</div>
<div data-aos="fade-right">
<a href="Quadratic-calculator/index.html">
<div class="card">
<span>Quadratic Equation</span>
<span>Calculator</span>
</div>
</a>
</div>
<div data-aos="fade-right">
<a href="Binary-calculator/index.html">
<div class="card">
<span>Binary</span>
<span>Calculator</span>
</div>
</a>
</div>
</div>
</section>
</main>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script>
AOS.init();
</script>
</body>
</html>