-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout2.html
More file actions
129 lines (112 loc) · 3.38 KB
/
about2.html
File metadata and controls
129 lines (112 loc) · 3.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Sanity Saviour</title>
<link rel="icon" type="png" href="file.png">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="theme.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
margin: 0;
}
header {
background: linear-gradient(to right, #a1c4fd, #c2e9fb);
padding: 20px;
text-align: center;
color: rgb(15, 1, 1);
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
header p {
font-size: 1.2em;
}
nav {
display: flex;
justify-content: center;
background: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
nav a {
padding: 15px 20px;
text-decoration: none;
color: #333;
font-weight: 600;
transition: color 0.3s;
}
nav a:hover {
color: #007BFF;
}
.content {
max-width: 800px;
margin: 30px auto;
padding: 20px;
background: rgb(219, 223, 224);
box-shadow: 0 4px 6px rgba(151, 131, 131, 0.1);
border-radius: 8px;
}
.content h2 {
font-size: 2em;
margin-bottom: 20px;
text-align: center;
color: #3e6b9c;
}
.content p {
font-size: 1.2em;
line-height: 1.8;
text-align: justify;
}
footer {
text-align: center;
background: #333;
color: white;
padding: 20px;
margin-top: 20px;
}
footer a {
color: #007BFF;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>About Us</h1>
<p>Learn More About Sanity Saviour</p>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about2.html">About Us</a>
<a href="comunity.html">Community</a>
<a href="#contact us">Contact Us</a>
</nav>
<div class="content">
<h2>Our Mission</h2>
<p>
Sanity Saviour is dedicated to nurturing the mental health and emotional well-being of physicians and healthcare providers.
Through innovative tele-mentoring, evidence-based resources, and a supportive community, we strive to create a culture of care and
resilience within the healthcare profession.
</p>
</div>
<footer>
<p>© 2025 Sanity Saviour. All Rights Reserved. <a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a></p>
</footer>
</body>
</html>