-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (107 loc) · 3.99 KB
/
index.html
File metadata and controls
113 lines (107 loc) · 3.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mental Health Awareness</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #f0f8ff;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1, h2 {
color: #2c3e50;
border-bottom: 2px solid #3498db;
padding-bottom: 10px;
}
h1 {
text-align: center;
}
.highlight {
background-color: #e8f4f8;
padding: 15px;
border-radius: 5px;
margin: 20px 0;
}
.resources {
background-color: #f9f9f9;
padding: 20px;
border-radius: 5px;
margin-top: 30px;
}
.warning-signs {
background-color: #fff3e0;
padding: 15px;
border-radius: 5px;
margin: 20px 0;
}
.hotline {
background-color: #e8f5e9;
padding: 10px;
border-radius: 5px;
margin: 10px 0;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>The Importance of Mental Health</h1>
<p>Mental health is a crucial component of our overall well-being, affecting how we think, feel, and act in daily life.</p>
<div class="highlight">
<h2>Why Mental Health Matters</h2>
<p>Good mental health helps us:</p>
<ul>
<li>Handle life's challenges effectively</li>
<li>Maintain healthy relationships</li>
<li>Work productively</li>
<li>Make meaningful contributions to our communities</li>
</ul>
</div>
<div class="resources">
<h2>Mental Health Resources</h2>
<div class="hotline">
National Crisis Hotline: 988
Available 24/7 for mental health crisis support
</div>
<h3>Tips for Maintaining Good Mental Health</h3>
<ul>
<li>Practice regular exercise and maintain a healthy diet</li>
<li>Get adequate sleep and maintain a consistent sleep schedule</li>
<li>Practice mindfulness or meditation</li>
<li>Stay connected with friends and family</li>
<li>Set boundaries and practice self-care</li>
</ul>
<div class="warning-signs">
<h3>Signs You Might Need Professional Help</h3>
<ul>
<li>Persistent feelings of sadness or anxiety</li>
<li>Significant changes in eating or sleeping patterns</li>
<li>Difficulty performing daily tasks</li>
<li>Withdrawal from social activities</li>
<li>Unexplained physical symptoms</li>
</ul>
</div>
<h3>Types of Mental Health Professionals</h3>
<ul>
<li>Psychiatrists - Medical doctors who can prescribe medication</li>
<li>Psychologists - Specialists in psychological testing and therapy</li>
<li>Licensed Clinical Social Workers - Provide counseling and case management</li>
<li>Licensed Professional Counselors - Offer various forms of therapy</li>
</ul>
</div>
<p>Taking care of our mental health is just as important as maintaining our physical health. Regular self-care, seeking support when needed, and maintaining healthy lifestyle habits all contribute to better mental well-being.</p>
</div>
</body>
</html>