-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathanalysis.html
More file actions
48 lines (45 loc) · 1.79 KB
/
analysis.html
File metadata and controls
48 lines (45 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analysis - MyWebsite</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">MyWebsite</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="journal.html">Journal Entry</a></li>
<li><a href="analysis.html" class="active">Analysis</a></li>
<li><a href="resources.html">Resources</a></li>
</ul>
<div class="auth-buttons">
<button class="btn">Login</button>
<button class="btn">Register</button>
</div>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</header>
<main class="content">
<section class="analysis">
<h2>Analysis</h2>
<p>Analyze your journal entries to gain insights into your spending habits, emotional patterns, and personal growth.</p>
<button class="btn-primary">Analyze My Impulse Spending</button>
<p class="analysis-description">
By analyzing your impulse spending, you can identify triggers, understand your financial behaviors, and develop strategies to manage your expenditures more effectively. This analysis provides you with detailed reports and actionable recommendations to help you make informed financial decisions.
</p>
</section>
</main>
<footer>
<p>© 2024 MyWebsite. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>