-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonal.html
149 lines (133 loc) · 6.21 KB
/
personal.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles/styles.css">
<link rel="icon" href="favicon.ico">
<title>Willow - Personal Coping</title>
</head>
<body>
<div id="side-menu" class="sidebar">
<a onclick="closeSlideMenu()">×</a>
<a href="index.html">Home</a>
<span id="drop-1" onmouseover="dropdown('general-dropdown')" onmouseout="dropup('general-dropdown')">
<a href="general.html">General</a>
<div id="general-dropdown" onmouseover="showDrop('drop-btn-1')" onmouseout="hideDrop('drop-btn-1')">
<a href="databases.html">Databases</a>
<a href="support.html">Online Support Groups</a>
<a href="personal.html">Personal Coping</a>
</div>
</span>
<a href="map.html">Resources Near You</a>
<span id="drop-2" onmouseover="dropdown('religion-dropdown')" onmouseout="dropup('religion-dropdown')">
<a href="religion.html">Spiritual & Religious</a>
<div id="religion-dropdown" onmouseover="showDrop('drop-btn-2')" onmouseout="hideDrop('drop-btn-2')">
<a href="christianity.html">Christianity</a>
<a href="judaism.html">Judaism</a>
<a href="islam.html">Islam</a>
</div>
</span>
<a href="gathering.html">Gathering</a>
<a href="planning.html">Planning Ahead</a>
<a href="kids.html">Kids & Young Adults</a>
<a href="voices.html">Voices</a>
<a href="about.php">About</a>
</div>
<div id="navbar">
<span id="left-navbar">
<span id="open-sidebar">
<a onclick="openSlideMenu()">
<svg width="20" height="20">
<path d="M0,5 20,5" stroke="#444" stroke-weight="3"/>
<path d="M0,10 20,10" stroke="#444" stroke-weight="3"/>
<path d="M0,15 20,15" stroke="#444" stroke-weight="3"/>
</svg>
</a>
</span>
<span id="willow-logo">
<a href="index.html">
<img src="images/willow.jpg" alt="">
</a>
</span>
<h3 id="willow-top-title">willow</h3>
</span>
<span id="right-navbar">
<a id="header-share-btn" href="https://docs.google.com/forms/d/e/1FAIpQLScyr3UbyTQbbWcXZtbDlFMhCTRMxw6XzWECs20eh39spCDFRA/viewform" target="_blank"><button type="button" name="button">Share a resource</button></a>
</span>
</div>
<div class="background">
</div>
<div class="container">
<div class="sub-header">
<div id="main-header-box">
<span class="sub-header-h1">
<img id="leaf-left" src="images/leaf_left.png" alt="">
<h1>personal coping</h1>
<img id="leaf-right" src="images/leaf_right.png" alt="">
</span>
<h2>resources for individuals coping with loss</h2>
</div>
</div>
<div class="page-links">
<div class="sub-link-box">
<div class="link">
<a href="https://holdthedoor.com/wp-content/uploads/2018/06/finding-your-way.pdf" target="_blank">Workbook: Finding Your Way through Sudden Loss & Adversity</a>
<p>This workbook was created by Hold the Door for Others, a non-profit that provides resources for people coping with adversity.</p>
</div>
<div class="link">
<a href="https://www.apa.org/topics/grief" target="_blank">American Psychological Association: Coping with the Loss of Your Loved One</a>
<p>"APA is the leading scientific & professional organization representing psychology in the US."</p>
</div>
<div class="link">
<a href="https://www.centerforloss.com/wp-content/uploads/2020/04/Alan-Wolfelts-Mourners-Bill-of-Rights.pdf" target="_blank">The Mourner's Bill of Rights: COVID edition</a>
<p>This list was written by Alan D. Wolfelt, Ph.D. of the Center for Loss. It is intended "to empower you to heal & to decide how others can & cannot help."</p>
</div>
<div class="link">
<a href="https://www.betterhelp.com/advice/grief/hope-is-all-around-how-constant-connection-through-online-grief-support-can-help-you-persevere-with-your-loss/?utm_source=AdWords&utm_medium=Search_PPC_c&utm_term=_b&utm_content=80082676786&network=s&placement=&target=&matchtype=b&utm_campaign=6459244691&ad_type=text&adposition=" target="_blank">BetterHelp</a>
<p>Discussion on how online grief support groups may help you & access to remote private sessions with licensed counselors.</p>
</div>
</div>
<script>
// opening and closing side menu
function openSlideMenu(){
document.getElementById('side-menu').style.width = '250px';
}
function closeSlideMenu(){
document.getElementById('side-menu').style.width = '0';
document.getElementById('general-dropdown').style.height = "0";
document.getElementById('drop-btn-1').innerHTML = "\u002B";
// document.getElementById('religion-dropdown').style.height = "0";
}
// showing map descriptions
function showDesc(id){
document.getElementById(id).style.height = "100px";
}
function hideDesc(id){
document.getElementById(id).style.height = "0px";
}
function dropdown(id){
document.getElementById(id).style.height = "80px";
}
function dropup(id){
document.getElementById(id).style.height = "0";
}
</script>
</div>
</div>
<footer class="footer">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="general.html">General</a></li>
<li><a href="map.html">Resources Near You</a></li>
<li><a href="religion.html">Spiritual & Religious</a></li>
<li><a href="gathering.html">Gathering</a></li>
<li><a href="planning.html">Planning Ahead</a></li>
<li><a href="kids.html">Kids & Young Adults</a></li>
<li><a href="voices.html">Voices</a></li>
<li><a href="about.php">About</a></li>
</ul>
</footer>
</body>
</html>