-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
289 lines (271 loc) · 12.4 KB
/
index.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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="CSS/index.css">
<link rel="icon" href="Assets/Images/favicon.jpg">
<title>Psyche Check</title>
</head>
<body>
<!-- Navbar begins -->
<nav class="nav navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<div class="logo">
<a href="#" class="navbar-brand"><img src="Assets/Images/LOGO.png" class="logoimg" alt=""></a>
</div>
<button class="navbar-toggler navTrigger " type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div id="collapse navbar-collapse" class="main_list">
<ul class="navlinks navbar-nav">
<li class="nav-item"><a href="#home">Home</a></li>
<li class="nav-item"><a href="#importance">Importance</a></li>
<li class="nav-item"><a href="#quiz">Self Assessment</a></li>
<li class="nav-item"><a href="#contact">Contact Us</a></li>
<li class="nav-item"><a href="login.html">Login</a></li>
</ul>
</div>
</div>
</nav>
<a name="home"></a>
<section class="home">
<img src="Assets/Images/home.png" alt="">
</section>
<section class="cards-section">
<div class="content">
<h1 class="heading text-center text-capitalize pt-5">Types of Mental illness</h1>
<a class="card" href="#!">
<div class="front" style="background-image: url(Assets/Images/depression.png);">
<p>Depression</p>
</div>
<div class="back">
<div>
<p>Symptoms:</p>
<p>
<ul>
<li>Feel sad, irritable, guilty and frustrated.</li>
<li>Feel lack in confidence and unable to concentrate.</li>
<li>Stop their usual enjoyable activities</li>
<li>Withdraw from close family and friends</li>
<li>Experience sleep problems, change of appetite and significant weight loss or gain.</li>
</ul>
</p>
<button class="button">Click Here</button>
</div>
</div>
</a><a class="card" href="#!">
<div class="front" style="background-image: url(Assets/Images/ocd.png);">
<p>Obsessive compulsive disorder (OCD)</p>
</div>
<div class="back">
<div>
<p>Symptoms:</p>
<p>
<ul>
<li>Fear of contamination from germs, dirt, and other physical and environmental substances</li>
<li>Intrusive thoughts and images about sex, violence, accidents and other issues</li>
<li>Excessive concern with symmetry and orderliness</li>
<li>Excessive concerns about illness, religious issues or morality</li>
<li>Excessive hand washing, showering and tooth brushing</li>
</ul>
</p>
<button class="button">Click Here</button>
</div>
</div>
</a><a class="card" href="#!">
<div class="front" style="background-image: url(Assets/Images/PTSD.png)">
<p>Post-traumatic stress disorder (PTSD)</p>
</div>
<div class="back">
<div>
<p>Symptoms:</p>
<p>
<ul>
<li>Avoiding reminders of the event, such as thoughts, feelings, people, places, activities or situations
that bring back memories of the event.</li>
<li>Negative changes in feelings and thoughts, such as feeling angry, afraid, guilty, flat or numb, and
feeling cut off from others.</li>
<li>Being overly alert, becoming easily startled and constantly being on the lookout for signs of danger.
</li>
</ul>
</p>
<button class="button">Click Here</button>
</div>
</div>
</a><a class="card" href="#!">
<div class="front" style="background-image: url(Assets/Images/BIPOLAR.png)">
<p>Bipolar affective disorder</p>
</div>
<div class="back">
<div>
<p>Symptoms:</p>
<p>
<ul>
<li>Going without sleep and difficulty concentrating</li>
<li>Thinking and speaking quickly</li>
<li>Reckless behaviour, such as overspending</li>
<li>Participating in unsafe sexual activity</li>
<li>Withdrawal from people and activities</li>
<li>Feelings of sadness and guilty</li>
</ul>
</p>
<button class="button">Click Here</button>
</div>
</div>
</a><a class="card" href="#!">
<div class="front" style="background-image: url(Assets/Images/PSYCHOSIS.png);">
<p>Psychosis</p>
</div>
<div class="back">
<div>
<p>Symptoms:</p>
<p>
<ul>
<li>Confused thinking</li>
<li>Delusions – false beliefs that are not shared by others.</li>
<li>Hallucinations – hearing, seeing, smelling or tasting something that isn't there.</li>
<li>Changed behaviours and feelings.</li>
</ul>
</p>
<button class="button">Click Here</button>
</div>
</div>
</a><a class="card" href="#!">
<div class="front" style="background-image: url(Assets/Images/addiction.png)">
<p>Addiction</p>
</div>
<div class="back">
<div>
<p>Symptoms:</p>
<p>
<ul>
<li>Use and abuse of substances continue despite health problems</li>
<li>An inability to stop the obsession</li>
<li>Risking to take large doses</li>
<li>Sleeplessness</li>
</ul>
</p>
<button class="button">Click Here</button>
</div>
</div>
</a>
</div>
</section>
<a name="quiz"></a>
<section class="container-fluid odd">
<img src="Assets/Images/wave6.png" alt="wave" class="wave">
<h1 class="heading-2 text-center text-capitalize pt-5">Self Assessment</h1>
<div class="row">
<div class="card" style="width: 18rem;">
<img src="Assets/Images/teen.png" class="card-img-top" alt="...">
<div class="card-body">
<h3 class="card-title">Teenager</h3>
<p class="card-text h5">For people with age less than 20 years</p>
<a href="quizt.html" class="btn btn-primary">Start Quiz</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<img src="Assets/Images/adult.png" class="card-img-top" alt="...">
<div class="card-body">
<h3 class="card-title">Adult</h3>
<p class="card-text h5">For people between 20-50 years</p>
<a href="quiza.html" class="btn btn-primary">Start Quiz</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<img src="Assets/Images/old.png" class="card-img-top" alt="...">
<div class="card-body">
<h3 class="card-title">Elderly People</h3>
<p class="card-text h5">For people with age more than 50 years</p>
<a href="quizo.html" class="btn btn-primary">Start Quiz</a>
</div>
</div>
</div>
</section>
<a name="contact"></a>
<section class="contact">
<div class="contact-container">
<div class="left-col">
</div>
<div class="right-col">
<h1>Contact us</h1>
<hr style="font-weight: bold;" class="w-25 mx-auto">
<p class="h3">Planning to get in touch with us?</p>
<form id="contact-form" method="post">
<label for="name" class="h5">Full name</label>
<input type="text" id="name" name="name" placeholder="Your Full Name" required>
<label for="email">Email Address</label>
<input type="email" id="email" name="email" placeholder="Your Email Address" required>
<label for="message">Message</label>
<textarea rows="6" placeholder="Your Message" id="message" name="message" required></textarea>
<button type="submit" id="submit" name="submit" class="btn">Send</button>
</form>
<div id="error"></div>
<div id="success-msg"></div>
<div class="help">
<h2> We can help you with:</h2>
<ul>
<li>Diagnosing your mental health conditions</li>
<li>Understanding your thoughts</li>
<li>Finding your inner peace</li>
<li>Improve your overall quality of life</li>
</ul>
</div>
</div>
</div>
</section>
<a name="importance"></a>
<section class="importance">
<h1 class="heading-3">Importance of improving mental health check-ups in India</h1>
<hr style="font-weight: bold;" class="w-25 mx-auto">
<div class="row mb-5">
<table>
<tr>
<td>
<div>
Mental health includes our emotional, psychological, and social well-being. It affects how we think, feel, and act. Mahatma Gandhi quoted “A balanced intellect presupposes a harmonious growth of body, mind and soul.”
A mentally strong and fit person is self-aware and confident about his choices and decisions. He has a positive sense towards different aspects of life and handles a difficult situation in a better way. When we are mentally healthy, we enjoy our life and environment, and the people in it. We can be creative, learn, try new things, and take risks.
But mental health and wellbeing are by far one of the most neglected areas in our country. According to a recent National Mental Health survey, approximately 150 million people in India need care for their mental health condition. The same survey also discovered that between 70 and 92 percent of these cases failed to receive treatment. The World Health Organisation says India has the highest number of teenage suicide rates globally.
In this fast-moving world we often forget to take a break and think about our thoughts. We are just being trained to work like machines, where we actually forget our about own needs and wishes. This results in the increasing importance of regular mental health check-ups.
Mental health check-ups help our brain to orient our thoughts and emotions. This way we an become less apprehensive. Once the brain is at peace, we’ll be able to handle things smartly which will further boost our confidence and build our trust in our own self. A stable and strong mind has a direct positive impact on educational outcomes, productivity at word and development of personal relationships.
</div>
</td>
<td>
<img style="opacity: .8;" src="Assets/Images/Importance-of-mental-health.jpg" class="rules-img my-4">
</td>
</tr>
</table>
</div>
</div>
</section>
<footer>
<p class="h4">Copyright © <script>document.write(new Date().getFullYear());</script>, Team HackBit</p>
</footer>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0"
crossorigin="anonymous"></script>
<!-- Custom JS -->
<script src="JS/index.js"></script>
<!-- Jquery needed -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/scripts.js"></script>
<!-- Function used to shrink nav bar removing paddings and adding black background -->
<script>
$(window).scroll(function () {
if ($(document).scrollTop() > 50) {
$('.nav').addClass('affix');
console.log("OK");
} else {
$('.nav').removeClass('affix');
}
});
</script>
</body>
</html>