-
Notifications
You must be signed in to change notification settings - Fork 1
/
MentalHigh.php
57 lines (54 loc) · 1.82 KB
/
MentalHigh.php
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {font-family: Arial, Helvetica, sans-serif;
width:50%;
margin:auto;
margin-top:5%;}
* {box-sizing: border-box;}
#low-result{
width:80%;
border:2px solid #ff3256;
border-radius:10px;
margin:40px 10%;
padding:20px;
}
p{
font-size:30px;
}
#form-img{
max-width:20%;
margin:1%;
}
#form-head{
display:flex;
justify-content:center;
align-items:center;
}
.container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
clear: both;
}
.container input{
width: 100%;
clear: both;
}
</style>
</head>
<body>
<div id="form-head">
<h2 style="text-align: center; font-size:40px; color:#ff3256; margin:2%;">Your Analysis- <div style="color:#ef0f0f">Low mental Health</div></h2>
</div>
<div id="low-result">
<p>Your results indicate that your mental well-being is low. We recommend you seek support from a professional mental health practitioner. Talking
to someone you trust can also help. Contact a therapist or counselor to gain proper suggestion on how to deal with your mental health issues.
</p>
<p>
Incase you have severe negative thoughts, reach out to the dedicated helplines immediately. Taking the first step towards getting support can make a difference.
<p>Suicide prevention helpline: 9152987821<br>Mental Health Helpline: 1800-599-0019</p>
</p></div>
</body>
</html>