-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
63 lines (58 loc) · 2.53 KB
/
Copy pathabout.html
File metadata and controls
63 lines (58 loc) · 2.53 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
<!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 - About</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<header>
<nav>
<div class="logo">Expense Tracker</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="tracker.html">Tracker</a></li>
<li><a href="about.html" class="active">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="about">
<h1>About Personal Expense Tracker</h1>
<div class="card">
<h2>Our Mission</h2>
<p>We aim to simplify personal finance management by providing an intuitive, user-friendly expense tracking solution.</p>
</div>
<div class="card faq">
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<button class="faq-question">How do I start tracking my expenses?</button>
<div class="faq-answer">
<p>Simply navigate to the Tracker page and start adding your expenses. Categorize each expense and track your spending patterns easily.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">Is my data secure?</button>
<div class="faq-answer">
<p>Your data is stored locally in your browser. We do not collect or store any personal information on external servers.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">Can I export my expenses?</button>
<div class="faq-answer">
<p>Yes! You can export your expenses as a CSV file from the Tracker page, making it easy to import into spreadsheet software.</p>
</div>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 Personal Expense Tracker. All rights reserved.</p>
</footer>
<script src="js/about.js"></script>
</body>
</html>