-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathptsd.html
149 lines (123 loc) · 3.95 KB
/
ptsd.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>
<head>
<title>ptsd</title>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine">
<link rel = "stylesheet" type = "text/css"
href = "animate.css" />
<style>
#menu{ list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #7FFFD4;}
#menu li {
float: left;
}
#menu li a, .dropbtn {
display: inline-block;
color: black;
font-size: 20px;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
#menu li a:hover,.dropdown:hover.dropbtn {
background-color: #6495ED;
}
#menu li.dropdown {
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
display: block;
}
#causes{list-style-image: url(a.jpg);
font-size: 25px;
margin-left: 10px;}
p{font-size: 20px;
}
#bb{font-family: "Abril Fatface";}
h1{font-family:"Tangerine";
font-size: 70px;
margin-top: 50px;}
h2{font-size: 50px;
font-family:"Tangerine";}
#event{font-size:25px;}
ul.pagination {
display: inline-block;
padding: 0;
margin-left: 50%;
text-align: center;
}
ul.pagination li {display: inline;}
ul.pagination li a {
color: black;
float: left;
padding: 8px 16px;
text-decoration: none;
}
ul.pagination li a.active {
background-color: #4CAF50;
color: black;
}
ul.pagination li a:hover:not(.active) {background-color: #ddd;}
</style>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#bb").addClass("animated zoomIn");
});
</script>
<ul id="menu">
<li><a href="p2.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li class="dropdown">
<a href="#" class="dropbtn">Categories</a>
<div class="dropdown-content">
<a href="genetic.html">Genetic Disorders</a>
<a href="ptsd.html">PTSD</a>
</div>
</li>
</ul>
<div id="bb"><h1>Post Traumatic Stress Disorder</h1></div>
<p id="bb">Posttraumatic stress disorder is a mental disorder that can develop after a person is exposed to a traumatic event, such as sexual assault, warfare,<br> traffic collisions, or other threats on a person's life.Symptoms may include disturbing thoughts, feelings, or dreams related to the events, mental<br> or physical distress to trauma-related cues, attempts to avoid trauma-related cues, alterations in how a person thinks and feels, and increased arousal. <br>These symptoms last for more than a month after the event. Young children are less likely to show distress but instead may express their memories through<br> play.Those with PTSD are at a higher risk of suicide.</p>
<img src="fear.gif" width="800px" height="500px">
<h2>Causes Of ptsd</h2>
<p id="event">Types of events that can lead to PTSD include:
<ul id="causes">
<li>serious road accidents</li>
<li>violent personal assaults, such as sexual assault, mugging or robbery
prolonged sexual abuse,<br> violence or severe neglect</li>
<li>witnessing violent deaths</li>
<li>military combat</li>
<li>being held hostage</li>
<li>terrorist attacks</li>
<li>natural disasters, such as severe floods, earthquakes or tsunamis
a diagnosis of a life-<br>threatening condition</li>
<li>an unexpected severe injury or death of a close family member or friend</li>
</ul>
</p>
<ul class="pagination">
<li><a href="#"><<</a></li>
<li><a class="active" href="ptsd.html">1</a></li>
<li><a href="ptsd2.html">2</a></li>
<li><a href="#">>></a></li>
</ul>
</body>
</html>