-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
82 lines (82 loc) · 3.58 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About Us</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="container zone">
<h1>About Us</h1>
</div>
<div class="purpose">
<div class="zone">
<p class="topic">Our Vision</p>
<p class="content">"Unite the shared thoughts and values from all around the world for the well-being of humanity."</p>
</div>
<div class="zone">
<p class="topic">Our Mission</p>
<p class="content">"Help others to live positive life by sharing positive thoughts."</p>
</div>
</div>
<div class="zone blue">
<p class="topic">Our Values</p>
</div>
<div class="zone blue grid-wrapper">
<div class="box zone">
<p class="topic">Beneficence (Doing Good)</p>
<p class="content">"Prioritize actions that promote the well-being and happiness of others."</p>
</div>
<div class="box zone">
<p class="topic">Non-Maleficence (Avoiding Harm)</p>
<p class="content">"Avoid causing harm or suffering to oneself or others."</p>
</div>
<div class="box zone">
<p class="topic">Honesty and Transparency</p>
<p class="content">"Be transparent and committed to telling the truth in all actions and communications."</p>
</div>
<div class="box zone">
<p class="topic">Empathy and Compassion</p>
<p class="content">"Understand and care about the feelings and well-being of others."</p>
</div>
<div class="box zone">
<p class="topic">Accountability</p>
<p class="content">"Take responsibility for one's actions and their consequences."</p>
</div>
<div class="box zone">
<p class="topic">Long-Term Considerations</p>
<p class="content">"Consider the long-term consequences of actions, aiming for sustainable and positive outcomes rather than short-term gains."</p>
</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>