-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
184 lines (167 loc) · 6.35 KB
/
index.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Budget Boss - Built by Pragya Singh</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<style>/* Gradient Button Styles */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
color: #333;
}
.navbar {
background-color: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(10px);
}
.hero-section {
background: linear-gradient(135deg, rgba(255, 200, 200, 0.6), rgba(200, 200, 255, 0.6));
backdrop-filter: blur(10px);
padding: 100px 0;
color: #c5fc00;
font-size: large;
}
.hero-section h1 {
font-size: 5rem;
margin-bottom: 20px;
font-weight: 700;
font-style: oblique;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-section p{
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.features-section {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
padding: 60px 0;
}
.feature-box {
background: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.pricing-section {
background: linear-gradient(135deg, rgba(255, 200, 200, 0.6), rgba(200, 200, 255, 0.6));
backdrop-filter: blur(10px);
padding: 60px 0;
}
.pricing-box {
background: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-section {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
padding: 60px 0;
}
.footer {
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
padding: 20px 0;
}
.btn-gradient {
background: linear-gradient(45deg, #4CAF50, #03A9F4); /* Green to Light Blue gradient */
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
padding: 10px 20px;
border-radius: 5px;
transition: 0.3s ease;
}
.btn-gradient:hover {
background: linear-gradient(45deg, #45a049, #0294F5); /* Slightly darker on hover */
}
</style>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<style>.navbar-brand {
font-size: 1.5rem;
color: #333;
text-decoration: none;
font-weight: bold;
}
.navbar-brand:hover {
color: #007bff; /* Change color on hover */
text-decoration: underline; /* Add underline on hover */
}
</style>
<a class="navbar-brand" href="#" style="background-color: #086e6c;">Budget Boss</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<header class="hero-section" style="background-image: url('image.png'); background-size: cover; background-position: center;">
<div class="container text-center">
<h1 class="display-4 animate__animated animate__fadeIn" style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">Manage Your Finances with Ease</h1>
<p class="lead animate__animated animate__fadeIn animate__delay-1s" style="font-family: Arial, Helvetica, sans-serif; font-weight: 900;">Budget Boss helps you track and manage your expenses effortlessly.</p>
<a href="expense.html" class="btn btn-gradient btn-lg animate__animated animate__fadeIn animate__delay-2s">Get Started</a>
</div>
</header>
<!-- Features Section -->
<section id="features" class="features-section">
<div class="container text-center">
<h2 class="display-4">Features</h2>
<div class="row">
<div class="col-md-4 animate__animated animate__fadeIn animate__delay-1s">
<div class="feature-box">
<h3>Track Expenses</h3>
<p>Keep an eye on your spending and stay within your budget.</p>
</div>
</div>
<div class="col-md-4 animate__animated animate__fadeIn animate__delay-2s">
<div class="feature-box">
<h3>Set Budgets</h3>
<p>Create custom budgets to manage your finances effectively.</p>
</div>
</div>
<div class="col-md-4 animate__animated animate__fadeIn animate__delay-3s">
<div class="feature-box">
<h3>Get Reports</h3>
<p>Analyze your spending with detailed reports and insights.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact-section">
<div class="container text-center">
<h2 class="display-4">Contact Us</h2>
<p>If you have any questions, feel free to reach out!</p>
<a href="mailto:pragya220898@gmail.com" class="btn btn-gradient">Email Us</a>
</div>
</section>
<!-- Footer -->
<footer class="footer text-center">
<p>© 2024 Budget Boss. Built with ❤️ by Pragya Singh.</p>
</footer>
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"></script>
</body>
</html>