-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-1.html
98 lines (96 loc) · 5.99 KB
/
content-1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Content-1 Title</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<nav class="zone blue sticky main-nav">
<ul class="nav-ul logo">
<li class="nav-li"><a class="nav-a" href="index.html">SharedValues</a></li>
</ul>
<ul class="nav-ul center-nav">
<li class="nav-li"> <a class="nav-a" href="index.html">Home</a></li>
<li class="nav-li"> <a class="nav-a" href="about.html">About Us</a></li>
<li class="nav-li"> <a class="nav-a" href="contents.html">Contents</a></li>
<li class="nav-li"> <a class="nav-a" href="">Contributors</a></li>
</ul>
<ul class="nav-ul right-nav">
<li class="nav-li"> <button class="no-background">Sign In</button></li>
<li class="nav-li"> <button class="action-btn">Get Started</button></li>
</ul class="nav-ul">
<div class="toogle-btn">
<i class="fa-solid fa-bars"></i>
</div>
</nav>
<div class="dropdown-menu">
<li class="nav-li"> <a class="nav-a" href="index.html">Home</a></li>
<li class="nav-li"> <a class="nav-a" href="about.html">About Us</a></li>
<li class="nav-li"> <a class="nav-a" href="contents.html">Contents</a></li>
<li class="nav-li"> <a class="nav-a" href="">Contributors</a></li>
<li class="nav-li"> <button class="no-background">Sign In</button></li>
<li class="nav-li"> <button class="action-btn">Get Started</button></li>
</div>
<div class="content-container">
<div class="content-format">
<div><h1>Never mind whatever happens in life, as long as your intentions are good</h1></div>
<div class="username">Aayush Shrestha</div>
<div class="date">Mar 24, 2024</div>
<div><img class="photo" src="./Image/mountain.jpg"></div>
<div class="paragraph">
<p>I had encountered the phrase, 'No matter, never mind,' in a podcast featuring
Keshav Nepal Sir as a guest speaker. Here, I aim to explain my understanding of
this phrase: When your intentions are good, whatever life throws at you, never
mind, because it will eventually lead to something valuable or teach you a
valuable lesson.</p>
<p>Steve Jobs once said, 'You cannot connect the dots looking forward. You can only
connect the dots looking backward.' In this context, 'dots' represent significant
moments of your life. It's only when you look back at these moments then you can
truly understand their meaning. These moments hold the answers to your questions.
If you haven't found the answer yet, the present or future 'dots' might provide
the answer. So, never mind what's happening now; just ensure you hold good
intentions in everything you do.</p>
<p>However, the real challenge lies in having good intentions. Everyone believes
their actions have good intentions from their perspective. To evaluate these
intentions, we should filter them through the core values. For Example:</p>
<p> <span class="sub-title">1. Beneficence (Doing Good):</span></p>
<ul class="content-ul">
<li>Prioritize actions that promote the well-being and happiness of others.</li>
<li>"Is your action benefiting someone or making a positive difference?"</li>
</ul>
<p> <span class="sub-title">2. Non-Maleficence (Avoiding Harm):</span></p>
<ul class="content-ul">
<li>Avoid causing harm or suffering to oneself or others.</li>
<li>"Could your action potentially cause harm to anyone, and have you taken steps to prevent harm?"</li>
</ul>
<p> <span class="sub-title">3. Honesty and Transparency:</span></p>
<ul class="content-ul">
<li>Be transparent and committed to telling the truth in all actions and communications.</li>
<li>"Are you being completely honest and transparent in your words and actions?"</li>
</ul>
<p> <span class="sub-title">4. Empathy and Compassion:</span></p>
<ul class="content-ul">
<li>Understand and care about the feelings and well-being of others.</li>
<li>"Have you considered the feelings and needs of those affected by your actions?" </li>
</ul>
<p> <span class="sub-title">5. Accountability:</span></p>
<ul class="content-ul">
<li>Take responsibility for one's actions and their consequences.</li>
<li>"Are you willing to take responsibility for the consequences of your actions?"</li>
</ul>
<p> <span class="sub-title">6. Long-Term Considerations:</span></p>
<ul class="content-ul">
<li>Consider the long-term consequences of actions, aiming for sustainable and
positive outcomes rather than short-term gains.</li>
<li>"How will your actions affect the future well-being of individuals or the environment?"</li>
</ul>
</div>
</div>
</div>
<footer class="zone yellow"><a class="nav-a" href="index.html">SharedValues</a></footer>
<script type="text/javascript" src="script.js"></script>
</body>
</html>