-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
483 lines (437 loc) · 19.2 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<title>Budget Buddy</title>
<!-- favicon -->
<link rel="icon" type="image/x-icon" href="Image/rounded-1.png">
<style>
* {
margin: 0px;
padding: 0px;
}
a {
text-decoration: none !important;
}
.progress-container {
width: 100%;
background-color: #85f7ea;
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-white fixed-top navbar-light p-3 shadow-sm">
<div class="container">
<a class="navbar-brand" href="#">
<img src="image/logo.jpeg" alt="logo" style="height: 60px;">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link mx-2 text-uppercase" href="#">Dashboard</a>
</li>
<li class="nav-item">
<a class="nav-link mx-2 text-uppercase" href="about-us.html">About us</a>
</li>
<li class="nav-item">
<a class="nav-link mx-2 text-uppercase" href="contact-us.html">contact-us</a>
</li>
<li class="nav-item custom-nav-item">
<a class="nav-link custom-nav-link" href="loan-tracker.html">Calculate Loan Interest</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
ACCOUNT
</a>
<ul class="dropdown-menu text-center">
<li><a class="dropdown-item" href="login.html">Login</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<div class="container py-5">
<div class="row justify-content-center align-items-center py-5">
<div class="col-md-6">
<h1 class="fw-bolder">Manage your Expenses, Swiftly</h1>
<p><i>Transform your financial journey with ease and efficiency, starting now.</i></p>
<div class="row">
<div class="col-8 col-md-12">
<a href="login.html">
<button type="button" class="btn btn-success btn-lg btn-block">Start Now</button>
</a>
</div>
</div>
</div>
<div class="col-md-6">
<br>
<img src="Images/new1.jpg" alt="" style="height: 300px;" class="rounded-3 img-fluid">
</div>
</div>
</div>
<!-- About us -->
<div class="container-fluid rounded-3 py-5" style="background-color:#FAF9F6;">
<div class="container">
<div class="row py-5">
<div class="col-md-6">
<img src="Images/about us" alt="" style="height: auto; max-height: 400px; width: 100%;" class="rounded-3 img-fluid">
</div>
<div class="col-md-6">
<h4 class="text-success fw-bolder">About</h4>
<h2>Discover the world of Financial Planning</h2>
<p>Embark on a journey through the realm of Financial Planning, where strategic insights and tailored solutions pave the way to financial stability and prosperity. Explore diverse strategies, smart investments, and expert guidance to navigate the complexities of wealth management and achieve your financial goals.</p>
<a href="about-us.html" class="text-white" style="font-size: 18px;">
<button type="button" class="btn btn-success btn-lg">Read more</button>
</a>
</div>
</div>
</div>
</div>
<!-- our servies -->
<section>
<div class="container py-5">
<div class="row py-5">
<div class="col-lg-6 d-flex align-items-center">
<div class="text-center">
<h5 class="text-success fw-bolder">Our Services</h5>
<h2>What we offer</h2>
<p>"Experience comprehensive financial solutions tailored to your needs. Our offerings include personalized financial planning, investment management, retirement planning, and risk assessment. Let us guide you towards financial security and success, every step of the way."</p>
</div>
</div>
<div class="col-lg-6">
<div class="row gy-4">
<div class="col-lg-4">
<div class="card h-100">
<div class="card-body text-center">
<i class="bi bi-piggy-bank-fill" style="font-size: 2em;"></i>
<h5 class="card-title">Money management</h5>
<p class="card-text">Maximize savings and reach financial goals with our advanced money management feature. Budget wisely and prioritize spending effortlessly for long-term success.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card h-100">
<div class="card-body text-center">
<i class="bi bi-file-earmark-bar-graph-fill" style="font-size: 2em;"></i>
<h5 class="card-title">Financial report</h5>
<p class="card-text">Generate comprehensive financial reports summarizing expenses and income trends. Access detailed breakdowns of spending categories and visualize financial data for better insights.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card h-100">
<div class="card-body text-center">
<i class="bi bi-bar-chart-fill" style="font-size: 2em;"></i>
<h5 class="card-title">Audit & Assurance</h5>
<p class="card-text">Improve internal controls to enhance the reliability and transparency of financial reporting.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card h-100">
<div class="card-body text-center">
<i class="bi bi-coin" style="font-size: 2em;"></i>
<h5 class="card-title">Financial plan</h5>
<p class="card-text">Develop personalized financial plans tailored to individual goals and circumstances. Analyze income, expenses, assets, and liabilities to create a comprehensive financial overview.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card h-100">
<div class="card-body text-center">
<i class="bi bi-kanban" style="font-size: 2em;"></i>
<h5 class="card-title">Profit Planning</h5>
<p class="card-text">Monitor performance against profit targets and adjust plans as needed to ensure financial success.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card h-100">
<div class="card-body text-center">
<i class="bi bi-kanban" style="font-size: 2em;"></i>
<h5 class="card-title">Safe Environment</h5>
<p class="card-text">Ensure a secure environment for your expense tracker by implementing strong encryption, regular backups, and access controls.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- best part -->
<div class="container-fluid py-5 rounded-3" style="background-color: #a7d9bb;">
<div class="container">
<div class="row">
<div class="col-lg-6 py-4">
<div class="d-flex flex-column">
<div class="mb-3">
<h4 class="fs-4"><i class="bi bi-check-circle fs-5 px-2"></i>Financial Awareness</h4>
<p>Understand where the money is being spent and get a hold of your spending patterns</p>
</div>
<div class="mb-3">
<h4 class="fs-4"><i class="bi bi-check-circle fs-5 px-2"></i>Setting up of Goals</h4>
<p>Facilitates in setting up of financial goals, be it saving up for a vacation or paying off debt</p>
</div>
<div class="mb-3">
<h4 class="fs-4"><i class="bi bi-check-circle fs-5 px-2"></i>Accessibility and Convenience</h4>
<p>Accessible anytime, anywhere. Simplify expense tracking on-the-go</p>
</div>
<div class="mb-3">
<h4 class="fs-4"><i class="bi bi-check-circle fs-5 px-2"></i>Security</h4>
<p>Your financial data is kept secure</p>
</div>
<div class="mb-3">
<h4 class="fs-4"><i class="bi bi-check-circle fs-5 px-2"></i>Visualize Expenses</h4>
<p>Provides visualizations like graphs for better financial expense understanding</p>
</div>
</div>
</div>
<div class="col-lg-6 text-center ">
<img src="Images/what" alt="" style="max-height: 500px; width: 100%;" class="rounded-3 img-fluid">
</div>
</div>
</div>
</div>
<!-- you need it, we got it -->
<div class="container-fluid py-5 " style="background-color: white;">
<div class="container text-center py-5">
<h1 class="py-5 fw-bolder">You need it, we've got it</h1>
<div class="row row-cols-2 row-cols-lg-5 g-2 g-lg-3 py-5">
<div class="col">
<div class="p-3"><i class="bi bi-currency-dollar" style="font-size: 2em;"></i></div>
<p class=" fw-bold fs-5">Money management</p>
</div>
<div class="col">
<div class="p-3"><i class="bi bi-graph-up" style="font-size: 2em;"></i></div>
<p class=" fw-bold fs-5">Investment tracking</p>
</div>
<div class="col">
<div class="p-3"><i class="bi bi-credit-card" style="font-size: 2em;"></i></div>
<p class=" fw-bold fs-5">Goal prioritization</p>
</div>
<div class="col">
<div class="p-3"><i class="bi bi-receipt-cutoff" style="font-size: 2em;"></i></div>
<p class=" fw-bold fs-5">Bill reminders</p>
</div>
<div class="col">
<div class="p-3"><i class="bi bi-calculator" style="font-size: 2em;"></i></div>
<p class=" fw-bold fs-5">Sync across devices</p>
</div>
<div class="col">
<div class="p-3"><i class="bi bi-bank" style="font-size: 2em;"></i></div>
<p class=" fw-bold fs-5">Security features</p>
</div>
<div class="col">
<div class="p-3"><i class="bi bi-wallet2" style="font-size: 2em;"></i></div>
<p class=" fw-bold fs-5">Income tracking</p>
</div>
<div class="col">
<div class="p-3"><i class="bi bi-cart3" style="font-size: 2em;"></i></div>
<p class=" fw-bold fs-5">Budget tracking</p>
</div>
<div class="col">
<div class="p-3"><i class="bi bi-currency-bitcoin" style="font-size: 2em;"></i></div>
<p class=" fw-bold fs-5">Multiple currency support</p>
</div>
<div class="col">
<div class="p-3"><i class="bi bi-check-all" style="font-size: 2em;"></i></div>
<p class=" fw-bold fs-5">Secure</p>
</div>
</div>
</div>
</div>
<!-- blue section -->
<section>
<div class="container-fluid rounded-3 py-5" style="background-color: #0d084d;">
<div class="container py-5">
<div class="row">
<div class="col-lg-6" style="color: white;">
<h1 style="font-weight: bolder;">Easy Financial Management</h1>
<h4>Advanvced way to track expenses </h4>
<div class="d-flex align-items-baseline mb-3">
<i class="bi bi-patch-check-fill" style="font-size: 1.5em;"></i>
<h5 class="px-2">Intuitive Interface </h5>
</div>
<p>SpendWise is a user-friendly interface, making it easy for users to navigate</p>
<div class="d-flex align-items-baseline mb-3">
<i class="bi bi-patch-check-fill" style="font-size: 1.5em;"></i>
<h5 class="px-2"> Comprehensive Expense Tracking</h5>
</div>
<p>Users can effortlessly record and categorize their expenses</p>
<div class="d-flex align-items-baseline mb-3">
<i class="bi bi-patch-check-fill" style="font-size: 1.5em;"></i>
<h5 class="px-2">Insightful Financial Analytics</h5>
</div>
<p>Spending patterns can be tracke through graphs</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- experts -->
<section>
<div class="container py-5">
<div class="row py-5">
<div class="col">
<h4 class="text-success">Learn From Experts</h4>
<h2>Expert Advisors</h2>
<p>"Unlock financial expertise with our platform. Learn from industry-leading experts and gain valuable insights to optimize your financial strategy and achieve your goals."</p>
<button type="button" class="btn btn-success btn-lg" ><a href="contact-us.html " class="text-white" target="_blank" style="font-size: 18px;">Read more</a></button>
</div>
<div class="col"><img src="Images/advisor1.webp" alt="" style="height: 250px; padding-left: 75px;"></div>
<div class="col"><img src="Images/advisor2.png" alt="" style="height: 250px; padding-left: 75px;"></div>
</div>
</div>
</section>
</main>
<footer class=" container-fluid text-lg-start text-muted ">
<!-- Section: Social media -->
<section class="d-flex justify-content-center justify-content-lg-between p-4 border-bottom">
<!-- Left -->
<div class="me-5 d-none d-lg-block">
<span>Get connected with us on social networks:</span>
</div>
<!-- Right -->
<div>
<a href="" class="me-4 text-reset">
<i class="bi bi-facebook fs"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="bi bi-twitter-x"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="bi bi-google"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="bi bi-instagram"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="bi bi-linkedin"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="bi bi-github"></i>
</a>
</div>
</section>
<!-- Section: Links -->
<section class="">
<div class="container text-center text-md-start mt-5">
<!-- Grid row -->
<div class="row mt-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<!-- Content -->
<h6 class="text-uppercase fw-bold mb-4">
<i class="fas fa-gem me-3"></i><img src="image/logo.jpeg" alt="" style="height: 50px;">
</h6>
<p>
"Track your expenses today, build your freedom tomorrow."
</p>
</div>
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mb-md-0 mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">Contact</h6>
<p><i class="bi bi-house"></i> SRM Institute Of Science and Technology, Delhi-NCR</p>
<p>
<i class="bi bi-envelope"></i>
</p>
<p><i class="bi bi-telephone"></i> + 01 234 567 88</p>
<p><i class="bi bi-printer"></i> + 01 234 567 89</p>
</div>
</div>
</div>
</section>
<div class="text-center p-4" >
© 2024 Copyright:
<a class="text-reset" href="#">Budget Buddy</a>
</div>
</footer>
<!-- hidden div script -->
<script>
document.addEventListener("DOMContentLoaded", function() {
// Select the next and back button elements
var nextButton = document.querySelector('.next-screen');
var prevButton = document.querySelector('.prev-screen');
// Select the pagination dots
var dots = document.querySelectorAll('.walkthrough-pagination .dot');
// Add event listener to the next button
nextButton.addEventListener('click', function() {
navigateScreens('next');
});
// Add event listener to the back button
prevButton.addEventListener('click', function() {
navigateScreens('prev');
});
// Function to navigate between screens
function navigateScreens(direction) {
// Find the current active screen
var currentScreen = document.querySelector('.screen.active');
// Find the next or previous screen based on the direction
var nextScreen = direction === 'next' ? currentScreen.nextElementSibling : currentScreen.previousElementSibling;
// If there is a next or previous screen, show it with animation
if (nextScreen) {
// Remove active class from current screen
currentScreen.classList.remove('active');
// Add active class to next screen
nextScreen.classList.add('active');
// Update the active dot
updateActiveDot(nextScreen);
}
}
// Function to update the active dot
function updateActiveDot(nextScreen) {
// Get the index of the next screen
var index = Array.from(nextScreen.parentNode.children).indexOf(nextScreen);
// Loop through the dots to update their active state
dots.forEach(function(dot, i) {
if (i === index) {
dot.classList.add('active');
} else {
dot.classList.remove('active');
}
});
}
// Check if elements with class 'fade-element' are in viewport and add 'fade-in' class
window.addEventListener('scroll', function() {
const fadeElements = document.querySelectorAll('.fade-element');
fadeElements.forEach(function(element) {
if (isElementInViewport(element)) {
element.classList.add('fade-in');
}
});
});
// Function to check if an element is in the viewport
function isElementInViewport(el) {
const rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
rect.right <= (window.innerWidth || document.documentElement.clientWidth)
);
}
// Add other JavaScript code here if needed
});
</script>
</body>
</html>