-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHappinessandProsperity.html
99 lines (88 loc) · 3.58 KB
/
HappinessandProsperity.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happiness & Prosperity Project</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="styling.css">
</head>
<body>
<header class="header">
<div class="image">
<nav class="navbar fixed-top ">
<div class="logo">
<img src="logo.jpeg" alt="Happiness and Prosperity Logo">
<span class="logo-text">Happiness & Prosperity</span>
</div>
<div class="nav-links ">
<a href="#PPT">PPT</a>
<a href="#Blogs">Blog</a>
<a href="#Views">Views</a>
<a href="#Games">Games</a>
</div>
</nav>
</div>
</header>
<section class="hero">
<div class="hero-content">
<h1>Happiness & Prosperity</h1>
<p>In Basic Human Aspiration.</p>
</div>
<div class="info-section">
<div class="info-block">
<h2>Happiness</h2>
<p>Happiness is the state of mental and emotional well-being. It is the joy found in relationships, self-acceptance, health, and personal fulfillment.</p>
</div>
<div class="info-block">
<h2>Balance</h2>
<p>A true sense of well-being comes from achieving harmony between happiness and prosperity. Both are essential for a fulfilling life.</p>
</div>
<div class="info-block">
<h2>Prosperity</h2>
<p>Prosperity is the experience of growth, security, and wealth. It includes financial success, but also the ability to give back and contribute to the community.</p>
</div>
</div>
</section>
<div class="background-2 " >
<section class="about-section animated" id="PPT" >
<h2>Presention</h2>
<p>Here ppt is to be Added.</p>
</section>
<div class="background-2 " >
<section class="about-section animated" id="Blogs" >
<h2>Blog section of the Project</h2>
<p>Here A Skit is to be Added.</p>
</section>
<section class="resources-section animated" id="resources">
<h2>Resources</h2>
<ul class="resources-list">
<li><a href="https://positivepsychology.com/what-is-happiness/">Understanding Happiness</a></li>
<li><a href="https://www.mindtools.com/pages/article/newHTE_90.htm">Building Prosperity</a></li>
<li><a href="https://www.happify.com">Tools for Emotional Well-being</a></li>
<li><a href="https://www.financialeducatorscouncil.org">Financial Growth and Stability</a></li>
</ul>
</section>
</div>
<script>
document.addEventListener("DOMContentLoaded", function() {
const elements = document.querySelectorAll(".animated");
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add("in-view");
observer.unobserve(entry.target);
}
});
});
elements.forEach(element => {
observer.observe(element);
});
});
</script>
<footer class="footer">
<p>© 2024 Happiness & Prosperity Project. All rights reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>