-
Notifications
You must be signed in to change notification settings - Fork 0
/
islam.html
136 lines (120 loc) · 4.93 KB
/
islam.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
<!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 - Islam</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>Islam</h1>
<img id="leaf-right" src="images/leaf_right.png" alt="">
</span>
</div>
</div>
<div class="page-links">
<div class="sub-link-box">
<div class="link">
<a href="http://fiqhcouncil.org/prayer-and-funeral-issues-pertaining-to-covid-19/" target="_blank">The Fiqh Council of North America</a>
<p>"Given the extenuating circumstances surround the coronavirus crisis, the Fiqh Council of North America convened online and has unanimously issued" statements & guidance on prayer & funerals.</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>