-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (66 loc) · 2.71 KB
/
Copy pathindex.html
File metadata and controls
72 lines (66 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Expense Tracker</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/responsive.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<header>
<nav>
<div class="logo">Expense Tracker</div>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="tracker.html">Tracker</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="user.html">Profile</a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="home-intro">
<!-- Centered Section -->
<div class="welcome-message">
<h1>Welcome to Your Personal Expense Tracker</h1>
<p>Track your expenses effortlessly and achieve your financial goals.</p>
<p>Good Evening! Let's keep your spending in check.</p>
</div>
<div class="interactive-elements">
<div class="card welcome">
<h2>Track Your Spending</h2>
<p>Monitor and categorize your spending with ease.</p>
<a href="tracker.html" class="btn">Start Logging Expenses</a>
</div>
<div class="card features">
<h2>Features</h2>
<ul>
<li>Real-time Expense Tracking</li>
<li>Financial Goal Setting</li>
<li>Interactive Charts and Reports</li>
<li>Export Data for Personal Records</li>
</ul>
</div>
</div>
<div class="cards-section">
<div class="card overview">
<h2>Your Financial Overview</h2>
<p>See your total expenses, savings progress, and more at a glance.</p>
</div>
<div class="card quick-start">
<h2>Quick Start</h2>
<p>Get started quickly by adding your first expense category and tracking your spending.</p>
<a href="tracker.html" class="btn">Start Now</a>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 Personal Expense Tracker. All rights reserved.</p>
</footer>
<script src="js/home.js"></script>
</body>
</html>