-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.html
More file actions
58 lines (49 loc) · 1.73 KB
/
Copy pathtools.html
File metadata and controls
58 lines (49 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FinSync - Tools</title>
<link rel="stylesheet" href="cap.css">
</head>
<body>
<header>
<h1>FinSync</h1>
<nav>
<a href="home.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="services.html">SERVICES</a>
<a href="tools.html" class="active">TOOLS</a>
<a href="contact.html">CONTACT</a>
</nav>
</header>
<section class="container">
<h2 style="text-align: center; margin-top: 60px;">Financial Tools & Calculators</h2>
<p style="text-align:center; margin-top:30px;">These calculators will work in JS phase-2!</p>
<div class="features">
<div class="card">
<img src="https://cdn-icons-png.flaticon.com/512/2331/2331970.png" alt="EMI Calculator">
<h3>EMI Calculator</h3>
</div>
<div class="card">
<img src="https://cdn-icons-png.flaticon.com/512/2331/2331949.png" alt="Tax Calculator">
<h3>Tax Calculator</h3>
</div>
<div class="card">
<img src="https://cdn-icons-png.flaticon.com/512/1086/1086741.png" alt="Savings Calculator">
<h3>Savings Calculator</h3>
</div>
<div class="card">
<img src="https://cdn-icons-png.flaticon.com/512/1900/1900603.png" alt="Investment Calculator">
<h3>Investment Calculator</h3>
</div>
<div class="card">
<img src="https://cdn-icons-png.flaticon.com/512/2796/2796631.png" alt="Currency Converter">
<h3>Currency Converter</h3>
</div>
</div>
</section>
<footer style="margin-top: 96.8px;">
<p>Turning Your Goals into Reality | Designed by Ayan Ahmad</p>
</footer>
</body>
</html>