-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.html
More file actions
110 lines (100 loc) · 5.04 KB
/
Copy pathlanding.html
File metadata and controls
110 lines (100 loc) · 5.04 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Expense Tracker - Home</title>
<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=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="loading-screen">
<div class="loader-coin">
<div class="side front">$</div>
<div class="side back">$</div>
</div>
</div>
<div class="s-wave-bg">
<svg viewBox="0 0 1440 320">
<path fill="#2196f3" fill-opacity="1"
d="M0,160 C360,240 1080,80 1440,160 L1440,320 L0,320 Z"></path>
</svg>
</div>
<div class="landing-container">
<h1>Expense Tracker</h1>
<p>Take control of your finances today. Track your income and expenses easily, visualize your spending, and stay on budget.</p>
<div class="btn-group">
<a href="index.html" class="btn btn-secondary">Use as Guest</a>
<a href="login.html" class="btn btn-primary">Login / Register</a>
</div>
<div class="info-box">
<h3>📢 Important Note</h3>
<p><strong>Guest Mode:</strong> Your data is stored locally on this device. If you clear your browser cache, you will lose your data.</p>
<p style="margin-top: 10px;"><strong>Login Mode:</strong> Create an account to securely store your data in the cloud and access it from any device.</p>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="footer-logo">
<img src="https://readme-typing-svg.herokuapp.com/?font=Righteous&size=25¢er=true&vCenter=true&width=200&height=50&duration=4000&lines=Shashwat" alt="Shashwat Logo" />
</div>
<p>
UI/UX Designer | Web Developer | Cloud Enthusiast
Passionate about building scalable, user-focused applications.
</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="https://shashwat-19.github.io/Personal-website/">Portfolio</a></li>
<li><a href="https://github.com/Shashwat-19">GitHub</a></li>
<li><a href="mailto:shashwat1956@gmail.com">Email</a></li>
<li><a href="https://www.linkedin.com/in/shashwatk1956/">LinkedIn</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Skills</h4>
<ul>
<li>JavaScript, Python, Java, C, C++</li>
<li>React, Next.js, Node.js, Firebase</li>
<li>UI/UX Design (Figma)</li>
<li>Docker, AWS, MongoDB</li>
</ul>
</div>
<div class="footer-section">
<h4>Follow Me</h4>
<div class="social-links badges">
<a href="https://github.com/Shashwat-19"><img src="https://img.shields.io/badge/GitHub-181717?style=for-the-badge&logo=github&logoColor=white" alt="GitHub" /></a>
<a href="https://www.linkedin.com/in/shashwatk1956/"><img src="https://img.shields.io/badge/LinkedIn-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white" alt="LinkedIn" /></a>
<a href="mailto:shashwat1956@gmail.com"><img src="https://img.shields.io/badge/Email-D14836?style=for-the-badge&logo=gmail&logoColor=white" alt="Email" /></a>
<a href="https://hashnode.com/@Shashwat56"><img src="https://img.shields.io/badge/Hashnode-2962FF?style=for-the-badge&logo=hashnode&logoColor=white" alt="Hashnode" /></a>
<a href="https://www.hackerrank.com/profile/shashwat1956"><img src="https://img.shields.io/badge/HackerRank-15%2B-2EC866?style=for-the-badge&logo=HackerRank&logoColor=white" alt="HackerRank" /></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>
© 2025 Shashwat. All rights reserved. | Powered by Creativity & Code
</p>
</div>
</div>
</footer>
<script>
window.addEventListener("load", () => {
const loader = document.getElementById("loading-screen");
if (loader) {
setTimeout(() => {
loader.style.opacity = "0";
setTimeout(() => {
loader.style.display = "none";
}, 800);
}, 1500);
}
});
</script>
</body>
</html>