-
Notifications
You must be signed in to change notification settings - Fork 0
/
general.html
154 lines (139 loc) · 5.67 KB
/
general.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
150
151
152
153
154
<!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 - General Resources</title>
</head>
<body>
<div class="background">
</div>
<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="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>general support</h1>
<img id="leaf-right" src="images/leaf_right.png" alt="">
</span>
<h2>databases & general support for coping with loss</h2>
</div>
</div>
<div class="sub-links">
<div class="link-box" onmouseover="showDesc('sub-1')" onmouseout="hideDesc('sub-1')">
<a href="databases.html">
<img class="map-img" src="images/databases.jpeg" alt="databases image">
</a>
<div id="sub-1" class="map-description">
<p>Other databases of grief resources.</p>
</div>
</div>
<div class="link-box" onmouseover="showDesc('sub-2')" onmouseout="hideDesc('sub-2')">
<a href="support.html">
<img class="map-img" src="images/onlinegroups.jpeg" alt="online image">
</a>
<div id="sub-2" class="map-description">
<p>Online communities to connect and grieve with.</p>
</div>
</div>
<div class="link-box" onmouseover="showDesc('sub-3')" onmouseout="hideDesc('sub-3')">
<a href="personal.html">
<img class="map-img" src="images/personalcoping.jpeg" alt="personal image">
</a>
<div id="sub-3" class="map-description">
<p>Grief resources for individuals.</p>
</div>
</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 = "75px";
}
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>
<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>