-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalzheimers-disease.html
257 lines (227 loc) · 10.1 KB
/
alzheimers-disease.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!DOCTYPE html>
<html lang="en">
<head>
<title>herHealth*</title>
<link rel="icon" href="static/icon.png" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source Sans Pro">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<style>
/* Dropdown Button */
.dropbtn {
background-color: #3498DB;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
background-color: #2980B9;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd
}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
display: block;
}
</style>
<nav class="navbar navbar-expand-md navbar-custom navbar-light sticky-top">
<a class="navbar-brand" href="home.html"><img src="static/logo.png" width="275"></a>
<p class="navbar-text" style="color: #FFC6C7;">Better knowledge. Better health.</p>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNav">
<ul class="navbar-nav ml-auto" style="text-align: center; color: #594A4E">
<li class="nav-item">
<a class="nav-link" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="doc.html">Find a Doc</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item search-nav">
<form action="/action_page.php">
<input type="text" placeholder="Search.." name="search"
style="border: 3px solid #FFC6C7; border-radius: 10px;">
<button type="submit"
style="border: 3px solid #FFC6C7; border-radius: 10px; background-color: white">
<i class="fa fa-search"
style="border: 0px solid #FFC6C7; color: #FFC6C7; border-radius: 10px; background-color: white"></i>
</button>
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Dropdown</button>
<div id="myDropdown" class="dropdown-content">
<a href="alzheimers-disease.html">Alzheimers</a>
<a href="breast-cancer.html">Breast Cancer</a>
<a href="about.html">About herHealth</a>
<a href="home.html">Home</a>
</div>
</div>
</form>
</li>
</ul>
</div>
</div>
</nav>
<div class="container illness-info">
<div class="overview">
<h2>Overview</h2>
<p>Alzheimer's disease is a progressive neurologic disorder that causes the brain to shrink (atrophy) and
brain
cells to die. Alzheimer's disease is the most common cause of dementia — a continuous decline in
thinking,
behavioral and social skills that affects a person's ability to function independently.
</p>
</div>
<div class="symptoms">
<h2>Symptoms</h2>
<ul>
<li>
Repeat statements and questions over and over
</li>
<li>Forget conversations, appointments or events, and not remember them later</li>
<li>Routinely misplace possessions, often putting them in illogical locations</li>
<li>Get lost in familiar places</li>
<li>Eventually forget the names of family members and everyday objects</li>
<li>Have trouble finding the right words to identify objects, express thoughts or take part in
conversations'</li>
</ul>
</div>
<div class="causes">
<h2>Causes</h2>
<ul>
<li>Plaques. Beta-amyloid is a fragment of a larger protein. When these fragments cluster together, they
appear
to have a toxic effect on neurons and to disrupt cell-to-cell communication. These clusters form
larger
deposits called amyloid plaques, which also include other cellular debris.</li>
<li>Tangles. Tau proteins play a
part in a neuron's internal support and transport system to carry nutrients and other essential
materials.
In Alzheimer's disease, tau proteins change shape and organize themselves into structures called
*neurofibrillary tangles*. The tangles disrupt the transport system and are toxic to cells.</li>
</ul>
</div>
<div class="source">
<a
href=https://www.mayoclinic.org/diseases-conditions/alzheimers-disease/symptoms-causes/syc-20350447>Source</a>
</div>
</div>
<!-- Footer -->
<footer class="page-footer fixed-bottom d-flex justify-content-center mt-auto">
<!-- Footer Elements -->
<div class="d-inline-flex p-3 footer-elements">
<!-- Grid column -->
<div class="col-md-12">
<!-- Copyright -->
<div class="footer-copyright">Copyright © 2021 herHealth*</a>
<p style="font-size: xx-small">We would like to acknowledge that "her" and "women" are not an
accurate
pronoun for many people.
We use * to specifically and intentionally include cis and trans women, as well as
women-identifying
non-binary,
agender, or intersex people and other gender minorities. (Credits to cmd-f for this statement)
</p>
</div>
<!-- Copyright -->
</div>
<!-- Grid column -->
</div>
<!-- Footer Elements -->
</footer>
<!-- Footer -->
</body>
</html>
<!--JavaScript source: https://www.w3schools.com/howto/howto_js_quotes_slideshow.asp-->
<script>
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("services");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {
slideIndex = 1
}
if (n < 1) {
slideIndex = slides.length
}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex - 1].style.display = "block";
dots[slideIndex - 1].className += " active";
}
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown menu if the user clicks outside of it
window.onclick = function (event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>