-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutusApp.html
107 lines (96 loc) · 4.87 KB
/
aboutusApp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About DhanSafar</title>
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<style>
.header {
background-color: #f9be7c;
color: white;
padding: 10px;
text-align: center;
font-size: 32px;
}
.container-ab {
padding: 24px;
}
.section-title {
font-size: 24px;
font-weight: bold;
margin-top: 18px;
}
.feature-item {
margin-top: 18px;
}
.feature-title {
font-size: 20px;
font-weight: bold;
}
.feature-description {
font-size: 18px;
}
</style>
</head>
<body>
<div class="container-ab">
<div class="section-title">Key Features</div>
<div class="feature-item">
<div class="feature-title">User Authentication</div>
<div class="feature-description">DhanSafar prioritizes the security of your data. With our robust user
authentication system, you can create accounts or log in securely using your email or phone number. We
ensure your account is protected with password authentication.</div>
</div>
<div class="feature-item">
<div class="feature-title">Expense Tracking</div>
<div class="feature-description">Tracking expenses has never been easier. DhanSafar allows you to
effortlessly add, edit, and delete expenses. You can include details such as amount, date, description,
categories, quantity, and price per quantity. With customizable categories, organizing your expenses
becomes a breeze.</div>
</div>
<div class="feature-item">
<div class="feature-title">Income Tracking</div>
<div class="feature-description">In addition to managing expenses, DhanSafar helps you keep track of your
income. You can add, edit, and delete income entries with ease, recording essential details like amount,
date, and description.</div>
</div>
<div class="feature-item">
<div class="feature-title">Project Management</div>
<div class="feature-description">Stay organized by categorizing your expenses and income entries into
projects. DhanSafar enables you to create, edit, and delete projects effortlessly. Associate expenses
and income entries with specific projects for better financial management.</div>
</div>
<div class="feature-item">
<div class="feature-title">Data Visualization</div>
<div class="feature-description">Gain valuable insights into your financial habits with DhanSafar's data
visualization tools. We provide graphical representations of your expenses and income over time,
including charts and graphs to visualize spending habits, income sources, and expense categories.</div>
</div>
<div class="feature-item">
<div class="feature-title">Search and Filter</div>
<div class="feature-description">Efficiently locate specific expenses or income entries with DhanSafar's
search and filter functionality. You can filter entries by date range, category, project, or amount,
ensuring quick access to the information you need.</div>
</div>
<div class="feature-item">
<div class="feature-title">Backup and Restore</div>
<div class="feature-description">Rest easy knowing your data is safe with DhanSafar's backup and restore
feature. Create backups of your data and restore from previous backups if needed. We ensure that your
data is securely stored and encrypted to prevent unauthorized access.</div>
</div>
<div class="feature-item">
<div class="feature-title">Settings and Preferences</div>
<div class="feature-description">Customize DhanSafar to suit your preferences. Adjust settings such as
currency, date format, and language to tailor the app to your needs. Set up notifications, reminders,
and user preferences for a personalized experience.</div>
</div>
<div class="feature-item">
<div class="feature-title">Security and Privacy</div>
<div class="feature-description">Your security and privacy are our top priorities. DhanSafar implements
robust security measures to protect your data from unauthorized access or breaches. We comply with data
privacy regulations and standards to safeguard your information at all times.</div>
</div>
</div>
</body>
</html>