forked from ayush-that/FinVeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
927 lines (888 loc) · 47.3 KB
/
blog.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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<title>Blogs - FinVeda</title>
<style>
.update {
display: block;
margin-bottom: 34px;
}
</style>
<meta name="description" content="Explore insightful articles and updates on finance, investments, and economics at FinVeda's blog. Stay informed with expert perspectives and analysis." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Ayush Singh">
<link
rel="shortcut icon" href="./assets/images/favicon2.png" type="image/png" />
<link rel="stylesheet" href="./assets/css/animate.css" />
<link rel="stylesheet" href="./assets/css/magnific-popup.css" />
<link rel="stylesheet" href="./assets/css/slick.css" />
<link rel="stylesheet" href="./assets/css/LineIcons.css" />
<link rel="stylesheet" href="./assets/css/font-awesome.min.css" />
<link rel="stylesheet" href="./assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="./assets/css/default.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="stylesheet" href="./assets/css/quiz.css" />
<link rel="stylesheet" href="./assets/css/index.css"/>
<link rel="stylesheet" href="./assets/css/popup.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"/>
<link rel="stylesheet" href="./assets/css/blog.css"/>
<!-- Added the navbar.css file here so that the navbar looks nice and uniform in all pages -->
<link rel="stylesheet" href="navbar.css">
<body>
<div class="circle-container">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<div id="progressBar"></div>
<div class="preloader">
<div class="loader">
<div class="ytp-spinner">
<div class="ytp-spinner-container">
<div class="ytp-spinner-rotator">
<div class="ytp-spinner-left">
<div class="ytp-spinner-circle"></div>
</div>
<div class="ytp-spinner-right">
<div class="ytp-spinner-circle"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<header class="header-area">
<div style="display: flex; justify-content: center;" class="navbar-area">
<div style="display: flex; justify-content: center;" class="container">
<div class="row">
<div style="display: flex; justify-content: center;;" class="">
<nav class="navbar navbar-expand-lg " style="display: flex;">
<!-- <button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button> -->
<div class="collapse navbar-collapse sub-menu-bar" id="navbarSupportedContent" style="margin: auto; margin-left: -5px;">
<div class="icon1">
<a href="./index.html">
<img src="assets/images/icon.webp" alt="icon.png">
</a>
</div>
<ul id="nav" class="navbar-nav ml-auto" style="margin: auto;">
<li class="nav-item">
<a class="page-scroll" href="./index.html" style="color: rgb(237, 242, 244);">Home 🏡</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./about.html" style="color: rgb(237, 242, 244);">About Us 📖</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./trends.html" style="color: rgb(237, 242, 244);">Trends 📈</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./tools/sip.html" style="color: rgb(237, 242, 244);">Tools 🔧</a>
</li>
<li class="nav-item">
<a class="page-scroll active-link" href="./blog.html" style="color: rgb(237, 242, 244);">Blogs 📰</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./quiz.html" style="color: rgb(237, 242, 244);">Quiz 🤔</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./careers.html" style="color: rgb(237, 242, 244);">Career 👔</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./contact.html" style="color: rgb(237, 242, 244);">Contact📞</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./faq.html" style="color: rgb(237, 242, 244);">Help 🙋♂️</a>
</li>
<li class="nav-item no-underline">
<a class="main-btn navbar-btn" style="padding: 2px 20px; color: rgb(237, 242, 244);animation-duration: 0.4s;animation-name: ease;" data-scroll-nav="0" href="./loginPage.html" >Login/Register 💻</a>
</li>
<li class="nav-item no-underline">
<button id="theme-toggle" class="theme-toggle" style="margin-right: 2px;">
🌙
</button>
</li>
</ul>
</div>
<script>
const toggleButton = document.getElementById('theme-toggle');
const body = document.body;
const currentTheme = localStorage.getItem('theme');
if (currentTheme === 'dark') {
body.classList.add('dark-mode');
toggleButton.classList.add('dark');
toggleButton.textContent = '🌞';
}
toggleButton.addEventListener('click', function () {
body.classList.toggle('dark-mode');
toggleButton.classList.toggle('dark');
// Update button icon based on mode
if (body.classList.contains('dark-mode')) {
toggleButton.textContent = '🌞'; // Light mode icon
localStorage.setItem('theme', 'dark');
} else {
toggleButton.textContent = '🌙'; // Dark mode icon
localStorage.setItem('theme', 'light');
}
});
</script>
<div class="">
<!-- Login Modal -->
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close" style="display: flex; justify-content: right;">×</span>
<div class="mt-3">
<h3 class="join"><i class="fa-solid fa-right-to-bracket"></i> Login to join us....</h3>
<form class="px-3 py-4" id="loginForm">
<div class="form-group">
<label class="d-flex">Username</label>
<input type="text" placeholder="Username" class="form-control" required />
</div>
<div class="form-group">
<label class="d-flex">Password</label>
<input type="password" placeholder="Password" class="form-control" required>
<button type="button" class="toggle-password-btn"><i class="fa-solid fa-eye"></i></button>
</div>
<div class="form-check d-flex">
<input type="checkbox" class="form-check-input me-1" style="margin-top: 0;">
<label class="form-check-label" style="margin-bottom: 0;">Remember me</label>
<a href="#" id="forgot-password" style="margin-left: 90px;">Forget Password?</a>
</div>
<div style="height: 20px;"></div>
<button class="main-btn w-100 mb-3" onclick="submitForm('loginForm')">Sign in</button>
<p class="text-center">Don't have an account? <a href="#" id="registerLink">Register</a></p>
<div class="or-sign-in-with text-center">
<p>Or sign in with</p>
</div>
<div class="social-icons mt-3">
<ul class="list-inline">
<li><a href="#" class="google" id="google-login"><i class="fa-brands fa-google"></i></a></li>
<li><a href="#" class="facebook" id="facebook-login"><i class="fa-brands fa-facebook-f"></i></a></li>
<li><a href="#" class="twitter" id="twitter-login"><i class="fa-brands fa-x-twitter"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<script>
// Add event listeners to the social media icons
document.getElementById('google-login').addEventListener('click', function() {
window.location.href = 'https://accounts.google.com/o/oauth2/auth?client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=profile email';
});
document.getElementById('facebook-login').addEventListener('click', function() {
window.location.href = 'https://www.facebook.com/v13.0/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=public_profile email';
});
document.getElementById('twitter-login').addEventListener('click', function() {
window.location.href = 'https://twitter.com/i/oauth2/authorize?client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=users.read';
});
</script>
<!-- Register Modal -->
<div id="registerModal" class="modal">
<div class="modal-content">
<span class="close" style="display: flex; justify-content: right;">×</span>
<div class="mt-3">
<h3 class="join"><i class="fa-solid fa-user"></i> Register to join us....</h3>
<form class="px-3 py-4" id="registerForm">
<div class="form-group">
<label class="d-flex">Email</label>
<input type="email" placeholder="Email" class="form-control" required />
</div>
<div class="form-group">
<label class="d-flex">Username</label>
<input type="text" placeholder="Username" class="form-control" required />
</div>
<div class="form-group">
<label class="d-flex">Password</label>
<input type="password" placeholder="Password" class="form-control" id="register-password" required oninput="checkPasswordStrength()">
<button type="button" class="toggle-password-btn" onclick="togglePasswordVisibility('register-password')">
<i class="fa-solid fa-eye"></i>
<i class="fa-solid fa-eye-slash" style="display: none;"></i>
</button>
</div>
<div id="password-meter" style="display: none; margin-top: 5px;">
<div id="meter" style="height: 10px; background-color: #ccc; border-radius: 5px; transition: width 0.3s;"></div>
<div id="strength-text" style="margin-top: 5px; font-weight: bold;"></div>
</div>
</form>
<!-- Import zxcvbn library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/zxcvbn/4.4.2/zxcvbn.js"></script>
<script>
function checkPasswordStrength() {
const password = document.getElementById('register-password').value;
const meter = document.getElementById('meter');
const meterContainer = document.getElementById('password-meter');
const strengthText = document.getElementById('strength-text');
if (password) {
meterContainer.style.display = 'block'; // Show the meter when typing
const result = zxcvbn(password);
const score = result.score; // Score ranges from 0 to 4
// Set meter width and color based on score
meter.style.width = (score + 1) * 20 + '%'; // Convert score to percentage
meter.style.backgroundColor = getMeterColor(score);
strengthText.innerText = getStrengthText(score); // Update strength text
} else {
meterContainer.style.display = 'none'; // Hide the meter if no password
strengthText.innerText = ''; // Clear strength text
}
}
function getMeterColor(score) {
switch (score) {
case 0: return 'red'; // Weak
case 1: return 'orange'; // Fair
case 2: return 'yellow'; // Good
case 3: return 'blue'; // Strong
case 4: return 'green'; // Very Strong
default: return 'gray';
}
}
function getStrengthText(score) {
switch (score) {
case 0: return 'Very Weak';
case 1: return 'Weak';
case 2: return 'Fair';
case 3: return 'Strong';
case 4: return 'Very Strong';
default: return '';
}
}
function togglePasswordVisibility(id) {
const passwordInput = document.getElementById(id);
const eyeIcon = passwordInput.nextElementSibling;
if (passwordInput.type === 'password') {
passwordInput.type = 'text';
eyeIcon.children[0].style.display = 'none';
eyeIcon.children[1].style.display = 'inline';
} else {
passwordInput.type = 'password';
eyeIcon.children[0].style.display = 'inline';
eyeIcon.children[1].style.display = 'none';
}
}
</script>
<button class="main-btn mt-2 w-100 mb-3" onclick="submitForm('registerForm')">Register</button>
<p class="text-center">Already have an account? <a href="#" id="loginLink">Login</a></p>
<div class="or-sign-in-with text-center">
<p>Or sign up with</p>
</div>
<div class="social-icons mt-3">
<ul class="list-inline">
<li><a href="#" class="google" id="google-signup"><i class="fa-brands fa-google"></i></a></li>
<li><a href="#" class="facebook" id="facebook-signup"><i class="fa-brands fa-facebook-f"></i></a></li>
<li><a href="#" class="twitter" id="twitter-signup"><i class="fa-brands fa-twitter"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<script>
// Add event listeners to the social media icons
document.getElementById('google-signup').addEventListener('click', function() {
window.location.href = 'https://accounts.google.com/o/oauth2/auth?client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=profile email';
});
document.getElementById('facebook-signup').addEventListener('click', function() {
window.location.href = 'https://www.facebook.com/v13.0/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=public_profile email';
});
document.getElementById('twitter-signup').addEventListener('click', function() {
window.location.href = 'https://twitter.com/i/oauth2/authorize?client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=users.read';
});
</script>
</div>
</nav>
<nav class="mobile-menu ">
<a class="page-scroll" href="./index.html">Home 🏡</a>
<a class="page-scroll" href="./about.html">About Us 📖</a>
<a class="page-scroll" href="./trends.html">Trends 📈</a>
<a class="page-scroll" href="./tools/sip.html">Tools 🔧</a>
<a class="page-scroll" href="./blog.html">Blogs 📰</a>
<a class="page-scroll" href="./quiz.html">Quiz 🤔</a>
<a class="page-scroll main-btn" href="#" onclick="openModal()" onmouseout="this.style.color='white'">Login/Register 💻</a>
<div class="mobile-menu__trigger" onclick="toggleMobileMenu()">
<span></span>
</div>
</nav>
<link href="./navbar.css" rel="stylesheet">
<script type="text/javascript" src="./navbar.js"></script>
</div>
</div>
</div>
</div>
<!-- removing intro section -->
<!-- <div
id="home"
class="header-hero bg_cover"
style="background-image: url(./assets/images/banner-bg.svg)"
> -->
<!-- <div class="container"> -->
<!-- <div class="row justify-content-center">
<div class="col-lg-8">
<div class="header-hero-content text-center">
<h3
class="header-sub-title wow fadeInUp"
data-wow-duration="1.3s"
data-wow-delay="0.2s"
>
Say 👋🏼 to FinVeda
</h3>
<h2
class="header-title wow fadeInUp"
data-wow-duration="1.3s"
data-wow-delay="0.5s"
>
your savvy financial companion
</h2>
<p
class="text wow fadeInUp"
data-wow-duration="1.3s"
data-wow-delay="0.8s"
>
Wanna learn how to grow your money to become rich? We have
made becoming a stock market Guru easy with our AI powered
finance advisor - <b>Arth Sathi 🤵🏻</b>
</p>
<a href="#" class="main-btn wow fadeInUp" data-wow-duration="1.3s" data-wow-delay="1.1s"
onclick="window.botpressWebChat.sendEvent({ type: 'show' }); return false;">
Chat with ArthaSathi 💬
</a>
</div>
</div> -->
<!-- </div>
<div class="row">
<div class="col-lg-12">
<div
class="header-hero-image text-center wow fadeIn"
data-wow-duration="1.3s"
data-wow-delay="1.4s"
>
<img src="./assets/images/header-hero.webp" alt="hero" />
</div>
</div>
</div>
</div>
<div id="particles-1" class="particles"></div> -->
<!-- </div> -->
</header>
<div class="blogfull">
<article>
<section id="blog" class="blog-area pt-100">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="section-title pb-35">
<div class="line"></div><br>
<h1 id="title" > Blog Posts</h1>
</div>
</div>
</div>
<div ><img id="blog-pic" src="./assets/images/blog-img.webp" alt="QUIZ"></div>
<div class="row justify-content-start">
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.2s">
<div class="blog-image">
<a href="./blogs/how-to-deal-with-unknown-risks-in-life-and-investing.html">
<img src="assets/images/blog-1.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<a href="./blogs/how-to-deal-with-unknown-risks-in-life-and-investing.html">
<p class="reviewtext">
How to deal with Unknown Risks in Life and Investing?
</p>
</a>
<a class="more" href="./blogs/how-to-deal-with-unknown-risks-in-life-and-investing.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/how-to-10x-your-generational-wealth.html">
<img src="./assets/images/blog-2.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">How to 10x your Generational Wealth?</p>
<a class="more" href="./blogs/how-to-10x-your-generational-wealth.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/invest-minimal.html">
<img src="./assets/images/women.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<a href="./blogs/invest-minimal.html">
<p class="reviewtext">
Investing with Minimal Savings: A Guide for Women Investors
</p>
</a>
<a class="more" href="./blogs/invest-minimal.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/Pocketmoney.html">
<img src="./assets/images/pocket.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
Can Pocket Money Turn Into Investment? A Guide for Teenagers
</p>
<a class="more" href="./blogs/Pocketmoney.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/senior.html">
<img src="./assets/images/senior.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
Investment Opportunities for Senior Citizens: Securing Your Future
</p>
<a class="more" href="./blogs/senior.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/why-investing-in-stocks-is-better-than-fixed-deposit.html">
<img src="./assets/images/blog-3.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
Why investing in stocks is better than fixed deposit?
</p>
<a class="more" href="./blogs/why-investing-in-stocks-is-better-than-fixed-deposit.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="/blogs/starup.html">
<img src="assets/images/staryp.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
Unlocking Potential: The Benefits and Opportunities of Investing in Startups
</p>
<a class="more" href="./blogs/starup.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/how-fintech-is-revolutionizing-small-business-lending.html">
<img src="./assets/images/fintech.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
How Fintech is Revolutionizing Small Business Lending.
</p>
<a class="more" href="./blogs/how-fintech-is-revolutionizing-small-business-lending.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/economic-trends-and-analysis.html">
<img src="./assets/images/economic-trend-analysis.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
Economic Trends and Analysis.
</p>
<a class="more" href="./blogs/economic-trends-and-analysis.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/empowering-you-with-economic-knowledge-for-smarter-decisions.html">
<img src="./assets/images/Empowering.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
Empowering you with economic knowledge for smarter decisions.
</p>
<a class="more" href="./blogs/empowering-you-with-economic-knowledge-for-smarter-decisions.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/Mutual-Funds-101-A-Beginners-Guide-to-Smart-Investing.html">
<img src="./assets/images/mutual-funds-blog.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
Mutual Funds 101: A Beginner’s Guide to Smart Investing
</p>
<a class="more" href="./blogs/Mutual-Funds-101-A-Beginners-Guide-to-Smart-Investing.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/saving-for-future.html">
<img src="./assets/images/saving.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
Saving for the Future.
</p>
<a class="more" href="./blogs/saving-for-future.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/real-estate-economics.html">
<img src="./assets/images/real-estate.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
Real Estate Economics
</p>
<a class="more" href="./blogs/real-estate-economics.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-7">
<div class="single-blog mt-30 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="blog-image">
<a href="./blogs/Types-of-Stock-Investments-A-Quick-Guide.html">
<img src="./assets/images/types-of-stock-investment-a-quick-guide-blog.webp" alt="blog" />
</a>
</div>
<div class="blog-content">
<p class="reviewtext">
Types of Stock Investment: A Quick Guide
</p>
<a class="more" href="./blogs/Types-of-Stock-Investments-A-Quick-Guide.html">
Learn More <i class="lni-chevron-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</article>
</div>
<style>
/* General Styling */
#title {
font-size: 4rem;/* Adjust to fit your layout */
margin-left: 400px;
font-weight: bold;
color: #2c3e50;
text-align: center;
white-space: nowrap; /* Ensures "Blog Posts" stays on one line */
text-transform: uppercase; /* Optional: Makes text uppercase */
letter-spacing: 0.1em; /* Adjusts spacing between letters */
transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
text-shadow: 3px 4px 8px rgba(0, 0, 0, 0.4); /* Adds shadow for a 3D effect */
cursor: pointer; /* Changes cursor on hover */
display: inline-block; /* Helps with hover animation */
position: relative;
} /* Hover effect to make it interactive */
#title:hover {
color: #3498db; /* Changes color on hover */
text-shadow: 5px 7px 15px rgba(0, 0, 0, 0.6);
/* Enhances shadow on hover */ transform: scale(1.05);
/* Slight zoom effect on hover */
}
/* Optional animation for an underline effect on hover */
#title::after {
content: '';
position: absolute;
left: 0; bottom: -10px; /* Distance from the text */
width: 100%; height: 3px; background-color: #3498db;
transform: scaleX(0); transition: transform 0.3s ease;
}
#title:hover::after {
transform: scaleX(1); /* Expands the underline on hover */
}
/* Styling for the blog-pic container */
#blog-pic {
position: absolute; /* Absolute positioning */
top: 175px; /* Vertically center the image */
left: 220px; /* Position it 20px from the left edge of the screen */
transform: translateY(-50%); /* Centering the image vertically */
width: 100px; /* Width for the container */
z-index: 1; /* Ensure it stays on top */
}
/* Styling for the image inside the blog-pic */
#blog-pic img {
border-radius: 10px; /* Rounded corners */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Shadow around the image */
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition for hover effects */
}
/* Hover effect for the image */
#blog-pic img:hover {
transform: scale(1.05); /* Slightly enlarge the image on hover */
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); /* Increase the shadow on hover */
filter: brightness(1.2); /* Slightly increase the brightness on hover */
}
</style>
<!-- Timed popup that will appear after succesful submission of feebback form! -->
<button class="notification" id="successnotification" style="display:none;">
<span class="message" id="successmsg">Submitted successfully!</span>
<span class="closenotif" id="closeSuccessNotification">✖</span>
<div class="timerline" id="timerline"></div>
</button>
<footer id="footer" class="footer-area pt-120">
<div class="container">
<div class="subscribe-area wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<div class="row">
<div class="col-lg-6">
<div class="subscribe-content mt-45">
<h2 class="subscribe-title">
Subscribe Our Newsletter <span>Get Regular Updates</span>
</h2>
</div>
</div>
<div class="col-lg-6">
<div class="subscribe-form mt-50">
<form id="unique-subscribe-form">
<input type="email" id="unique-news-email" placeholder="Enter Email" required/>
<button class="unique-main-btn" id="unique-subscribe-btn" type="submit">Subscribe</button>
</form>
<div id="unique-message" class="unique-popup-message" style="display: none;">
<div class="border-animation"></div>
Thank You for the subscription!
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer-widget pb-100">
<div class="row" id="footer">
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="footer-about mt-50 ml-45 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.2s">
<p class="text custom-margin">
We at FinVeda aim to make you a stock market Guru easily with our AI-powered teaching and financial blogs.
</p>
</div>
</div>
<div class="col-lg-5 col-md-7 col-sm-7">
<div class="footer-link d-flex mt-50 justify-content-md-between" style="justify-content: space-around !important;">
<div class="link-wrapper wow fadeIn" data-wow-duration="1s" data-wow-delay="0.4s">
<div class="footer-title">
<h3 class="title custom-margin">Quick Links</h3>
</div>
<ul class="link custom-margin">
<li><a href="./blogs/privacy-policy.html"><i class="fas fa-user-secret"></i> Privacy Policy</a></li>
<li><a href="./blogs/refund-policy.html"><i class="fas fa-undo-alt"></i> Refund Policy</a></li>
<li><a href="Licensing.html"><i class="fas fa-file-contract"></i> Licensing</a></li>
<li><a href="./blogs/terms-of-service.html"><i class="fas fa-file-alt"></i> Terms of Service</a></li>
<li><a href="./contributors.html"><i class="fas fa-users"></i> Our Contributors</a></li>
</ul>
</div>
<div class="link-wrapper wow fadeIn" data-wow-duration="1s" data-wow-delay="0.6s">
<div class="footer-title">
<h4 class="title custom-margin">Resources</h4>
</div>
<ul class="link custom-margin">
<li><a href="./index.html"><i class="fas fa-home"></i> Home</a></li>
<li><a href="./about.html"><i class="fas fa-info-circle"></i> About Us</a></li>
<li><a href="./trends.html"><i class="fas fa-chart-line"></i> Trends</a></li>
<li><a href="./tools/sip.html"><i class="fas fa-tools"></i> Tools</a></li>
<li><a href="./blog.html"><i class="fas fa-blog"></i> Blog</a></li>
<li><a href="./quiz.html"><i class="fas fa-question-circle"></i> Quiz</a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-5 col-sm-5">
<div class="footer-contact mt-50 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.8s">
<div class="footer-title">
<h4 class="title custom-margin">Contact Us</h4>
</div>
<ul class="contact custom-margin-big" style="justify-content: space-around;">
<li class="d-sm-flex justify-content-center">
<i class="fa fa-envelope d-sm-flex align-items-center white" style="font-size: 16px; width: 10%;"></i>
<p style="width: 80%;">
<a href="mailto:ayush1337@hotmail.com" target="_blank"
style="color: white; text-decoration: underline;">
ayush1337@hotmail.com
</a>
</p>
</li>
<li class="d-sm-flex justify-content-center">
<i class="fa fa-globe d-sm-flex align-items-center white" style="font-size: 16px; width: 10%;"></i>
<div style="width: 80%;">
<a href="https://fin-veda.vercel.app/index.html" target="_blank" style="color: #fff ;">
fin-veda.vercel.app
</a>
</div>
</li>
<li class="d-sm-flex justify-content-center">
<i class="fa fa-location-dot d-sm-flex align-items-center white" style="font-size: 12px; width: 10%;"></i>
<div style="width: 80%;">
<a href="https://www.google.com/maps/place/Delhi/@28.6436846,76.7635778,10z/data=!3m1!4b1!4m6!3m5!1s0x390cfd5b347eb62d:0x37205b715389640!8m2!3d28.7040592!4d77.1024902!16zL20vMDlmMDc?entry=ttu"
style="color:#fff">
Delhi, India
</a>
</div>
</li>
<div class="social-icons">
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-x-twitter"></i></a>
<a href="#"><i class="fa-brands fa-discord"></i></a>
<a href="#"><i class="fa-brands fa-github"></i></a>
</div>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-copyright mt-50 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.8s" style="text-align: center">
<div class="row">
<div class="col-lg-12">
<div
class="copyright d-sm-flex justify-content-center"
style="
display: flex;
justify-content: center;
text-align: center;
width: 100%;
height: 100%;
"
>
<div class="copyright-content" style="text-align: center">
<p class="text" style="text-align: center">
© <span id="copyright-year">2024</span> FinVeda. All rights are
reserved<br />
Made with ♥ in India
</p>
</div>
</div>
</div>
</div>
</div>
<div id="particles-2"></div>
</div>
</footer>
<a href="#" class="back-to-top"><i class="lni-chevron-up"></i></a>
<script src= "./assets/js/blog.js"></script>
<script src= "./assets/js/subscribe.js"></script>
<script src= "./assets/js/vendor/jquery-1.12.4.min.js"></script>
<script src= "./assets/js/vendor/modernizr-3.7.1.min.js"></script>
<script src= "./assets/js/popper.min.js"></script>
<script src= "./assets/js/bootstrap.min.js"></script>
<script src= "./assets/js/plugins.js"></script>
<script src= "./assets/js/slick.min.js"></script>
<script src= "./assets/js/ajax-contact.js"></script>
<script src= "./assets/js/waypoints.min.js"></script>
<script src= "./assets/js/jquery.counterup.min.js"></script>
<script src= "./assets/js/jquery.magnific-popup.min.js"></script>
<script src= "./assets/js/blogposts.js"></script>
<script src= "./assets/js/jquery.easing.min.js"></script>
<script src= "./assets/js/scrolling-nav.js"></script>
<script src= "./assets/js/wow.min.js"></script>
<script src= "./assets/js/particles.min.js"></script>
<script src= "./assets/js/main.js"></script>
<script src= "./assets/js/popup.js"></script>
<script src= "https://cdn.botpress.cloud/webchat/v1/inject.js"></script>
<script src= "https://mediafiles.botpress.cloud/5e160793-5606-4412-ba4c-337e416f14fe/webchat/config.js" defer></script>
<script defer src="./assets/js/arthsathi-style.js"></script>
<script src= "./assets/js/botpress.js"></script>
<script src= "./assets/js/blogmodals.js"></script>
<script src= "./tools/smoothScroll.js"></script>
<div class="gtranslate_wrapper"></div>
<script>window.gtranslateSettings = {"default_language":"en","detect_browser_language":true,"wrapper_selector":".gtranslate_wrapper"}</script>
<script src="https://cdn.gtranslate.net/widgets/latest/float.js" defer></script>
</body>
</html>