-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathresources.html
More file actions
117 lines (116 loc) · 3.96 KB
/
resources.html
File metadata and controls
117 lines (116 loc) · 3.96 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resources</title>
<link rel="stylesheet" href="style.css">
<script src="theme.js"></script>
<link rel="icon" type="png" href="file.png">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
}
header {
background-color: #0056b3;
color: white;
padding: 20px;
text-align: center;
}
.container {
padding: 20px;
}
footer {
text-align: center;
padding: 10px;
background-color: #003d80;
color: white;
}
nav {
margin: 1em auto;
text-align: center;
max-width: 800px;
background-color: #a1c4fd;
border: 1px solid #0056b3;
border-radius: 5px;
padding: 10px;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #0056b3;
}
nav a:hover {
text-decoration: underline;
}
section {
padding: 2em;
max-width: 800px;
margin: 20px auto;
background: linear-gradient(45deg, #a1c4fd, #c2e9fb);
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin: 0.5em 0;
}
ul li a {
color: #0066cc;
text-decoration: none;
}
ul li a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Resources</h1>
<p>Access valuable information for your practice.</p>
</header>
<nav>
<a href="#videos">Videos</a>
<a href="#meditation">Meditation Resources</a>
<a href="#other-resources">Other Resources</a>
</nav>
<div class="container">
<p><h3>Explore our curated resources for health professionals</h3></p>
</div>
<section id="videos">
<h2>Helpful YouTube Videos</h2>
<ul>
<li><a href="https://www.youtube.com/watch?v=ZToicYcHIOU" target="_blank">5-Minute Meditation You Can Do Anywhere</a></li>
<li><a href="https://www.youtube.com/watch?v=inpok4MKVLM" target="_blank">10-Minute Guided Meditation for Stress Relief</a></li>
<li><a href="https://www.youtube.com/watch?v=Wz-7HOrDlyk" target="_blank">Managing Burnout in Healthcare Workers</a></li>
</ul>
</section>
<section id="meditation">
<h2>Meditation Resources</h2>
<ul>
<li><a href="https://www.headspace.com/" target="_blank">Headspace: Meditation and Mindfulness App</a></li>
<li><a href="https://www.calm.com/" target="_blank">Calm: Guided Meditation and Sleep Stories</a></li>
<li><a href="https://insighttimer.com/" target="_blank">Insight Timer: Free Meditation App</a></li>
</ul>
</section>
<section id="other-resources">
<h2>Other Resources</h2>
<ul>
<li><a href="https://www.ama-assn.org/delivering-care/public-health/mental-health-resources-health-care-workers" target="_blank">Mental Health Resources for Healthcare Workers (AMA)</a></li>
<li><a href="https://www.mindful.org/" target="_blank">Mindful: Resources for Mindfulness Practices</a></li>
<li><a href="https://psychhub.com/" target="_blank">Psych Hub: Mental Health Education</a></li>
</ul>
</section>
<footer>
<p>© 2025 Health Workers Community. All rights reserved.</p>
</footer>
</body>
</html>