-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
54 lines (46 loc) · 1.55 KB
/
Copy pathservices.html
File metadata and controls
54 lines (46 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FinSync - Services</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" class="active">SERVICES</a>
<a href="tools.html">TOOLS</a>
<a href="contact.html">CONTACT</a>
</nav>
</header>
<div class="container">
<h2 style="margin-top: 50px; margin-bottom: 25px;">Our Services</h2>
<div class="service-box">
<img src="https://cdn-icons-png.flaticon.com/512/3063/3063829.png">
<h3>Finance Learning</h3>
<p>Step-by-step guides for budgeting, banking, loans, and more.</p>
</div>
<div class="service-box">
<img src="https://cdn-icons-png.flaticon.com/512/3184/3184903.png">
<h3>Budget Planning</h3>
<p>Tools to manage your monthly income and save smartly.</p>
</div>
<div class="service-box">
<img src="https://cdn-icons-png.flaticon.com/512/684/684831.png">
<h3>Wealth Management Tips</h3>
<p>Learn how to invest wisely and grow long-term wealth.</p>
</div>
<div class="service-box">
<img src="https://cdn-icons-png.flaticon.com/512/3597/3597075.png">
<h3>Currency & Global Finance</h3>
<p>Understand international transfers and currency exchange.</p>
</div>
</div>
<footer style="margin-top: 147px;">
<p>Turning Your Goals into Reality | Designed by Ayan Ahmad</p>
</footer>
</body>
</html>