-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
96 lines (80 loc) · 5.03 KB
/
about.html
File metadata and controls
96 lines (80 loc) · 5.03 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.tailwindcss.com"> </script>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inconsolata:wght@200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inconsolata:wght@200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<script src="design.js"></script>
</head>
<body class=" min-h-screen flex flex-col ">
<nav>
<ul class="flex flex-row text-slate-500 mx-40 mb-2 text-xl font-medium gap-5
">
<li class=" p-2 border-r-2 border-l-2 border-b-2 border-transparent transition delay-60 hover:border-slate-700 hover:text-purple-600 ">
<a href="./index.html"> Home </a>
</li>
<li class=" p-2 border-r-2 border-l-2 border-b-2 border-transparent transition delay-60 hover:border-slate-700 hover:text-purple-600 ">
<a href="./about.html"> About </a>
</li>
<li class=" p-2 border-r-2 border-l-2 border-b-2 border-transparent transition delay-60 hover:border-slate-700 hover:text-purple-600 ">
<a href="./profiles.html"> Profiles </a>
</li>
</ul>
</nav>
<div class="hero p-5 z-10 min-h-60 mx-10 shadow-lg bg-gradient-to-r from-emerald-400 via-cyan-300 to-blue-500 rounded-lg">
<h1 class="main-title text-4xl md:text-7xl my-5 font-bold text-center text-white drop-shadow-lg">
MoneyMonitor
</h1>
<h3 class="slide-in ml-10 mt-20 text-5xl font-bold text-slate-800">
Empowering You <br> Take Control of Your Finances
</h3>
</div>
<div class="about my-10 px-10">
<h1 class="text-5xl text-slate-700 font-bold text-center mb-6">
About MoneyMonitor
</h1>
<p class="text-xl text-gray-700 text-justify leading-relaxed mx-auto max-w-4xl">
<strong>MoneyMonitor</strong> is a modern and intuitive web application designed to help users take full control of their personal finances. Built using cutting-edge technologies such as <strong>HTML</strong>, <strong>JavaScript</strong>, and <strong>Tailwind CSS</strong>, MoneyMonitor offers a seamless and responsive interface, ensuring that managing your expenses has never been easier. All data is securely stored locally in your browser using <strong>localStorage</strong>, providing both privacy and persistent access to your financial records without requiring a backend server.
</p>
</div>
<div class="features my-10 px-10">
<h2 class="text-4xl text-slate-700 font-bold text-center mb-6">Key Features</h2>
<ul class="list-disc text-lg text-gray-700 mx-auto max-w-4xl pl-5">
<li>Intuitive user profiles for personalized financial management.</li>
<li>Effortlessly add, view, and delete income and expense transactions.</li>
<li>Dynamic updates to total income, total expenses, and net income.</li>
<li>Proactive warnings:
<ul class="list-disc ml-5">
<li>"Nearing money overuse" when expenses are high and net income falls below 1000.</li>
<li>"In debt" when net income reaches 0 or less.</li>
</ul>
</li>
<li>Responsive design that adapts to any device.</li>
<li>Secure local data storage using <strong>localStorage</strong>.</li>
</ul>
</div>
<footer class="bg-gradient-to-r from-sky-500 to-indigo-600 text-white py-6 mt-auto">
<div class="container mx-auto flex flex-col md:flex-row justify-between items-center px-6">
<!-- Quick Links -->
<div class="flex gap-6 mt-4 md:mt-0">
<a href="./index.html" class="text-sm hover:underline">Home</a>
<a href="./profiles.html" class="text-sm hover:underline">Profiles</a>
<a href="./about.html" class="text-sm hover:underline">About</a>
</div>
</div>
<!-- Divider -->
<div class="mt-6 border-t border-white opacity-30"></div>
<!-- Copyright Section -->
<div class="text-center mt-4 text-sm text-gray-200">
© 2024 MoneyMonitor. All rights reserved.
</div>
</footer>
</body>
</html>