-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
263 lines (250 loc) · 11.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css" />
<link href="https://api.mapbox.com/mapbox-gl-js/v2.1.1/mapbox-gl.css" rel="stylesheet" />
<link rel="stylesheet" href="static/styles/style.css" />
<title>Pawsitive</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg bg-light navbar-light py-3 fixed-top">
<div class="container">
<img class="img-fluid d-none d-sm-block smalllogo" src="static/images/logo.png" width="100" height="100" class="img-fluid"
alt="" />
<a href="#" class="navbar-brand">Pawsitive</a>
<!--Google Meta Tags-->
<meta itemprop="name" content=""> <!--The Name or Title Here-->
<meta itemprop="description" content=""> <!--Page Description-->
<meta itemprop="image" content="http://"> <!--URL of Image to show-->
<div class="collapse navbar-collapse" id="navmenu">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a href="#" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#game" class="nav-link">Game</a>
</li>
<li class="nav-item">
<a href="#faq" class="nav-link">FAQ</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Showcase -->
<section class="bg-light text-dark p-5 p-lg-0 pt-lg-5 text-center text-sm-start">
<div class="container">
<div class="d-sm-flex align-items-center justify-content-between">
<div>
<h1><span class="text-danger">Psychological first aid (PFA)</span></h1>
<p class="lead my-4">
PFA is a crisis response intervention technique that facilitates recovery and reduces
trauma-related stress after a crisis hits. Learn more on PFA and how you can be better prepared
to aid your family and friends when a crisis hits.
</p>
<a href="index2.html">
<button class="btn btn-danger btn-lg">
Play our game!
</button>
</a>
</div>
<img class="img-fluid w-50 d-none d-sm-block" src="static/images/pfa.png" alt="" />
</div>
</div>
</section>
<!-- Learn Sections -->
<section id="about" class="p-5">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-md">
<img class="img-fluid p-3 d-none d-sm-block" src="static/images/help.jpeg" class="img-fluid"
alt="" />
<br>
<br>
<img class="img-fluid p-3 d-none d-sm-block" src="static/images/help2.jpeg" class="img-fluid"
alt="" />
</div>
<div class="col-md p-5">
<h2>What is it</h2>
<p class="lead">
Overview of PFA
</p>
<p>
Through PFA, you learn to understand that the emotions we feel during a crisis are normal. You
also learn how to help others by following these action principles:
<ul>
<li>Prepare</li>
<li>Look</li>
<li>Listen</li>
<li>Link</li>
</ul>
</p>
<h2>Where can we apply it</h2>
<p class="lead">
PFA can be used anywhere
</p>
<p>
You can use PFA at your school, at home, or at work. Learn what you can do if you see your
friend or
family member:
<ul>
<li>Crying</li>
<li>Shouting or being violent</li>
</ul>
</p>
<h2>What not to say</h2>
<p class="lead">
Avoid using phrases that people can misunderstand
</p>
<p>
These commonly used phrases may not help someone who is suffering:
<ul>
<li>Don’t cry</li>
<li>I understand</li>
<li>Cheer up</li>
<li>Think of the positive side</li>
<li>Calm down</li>
<li>It’s okay</li>
<li>It’s not that bad</li>
<li>You must get a hold of yourself</li>
</ul>
</p>
<a href="#faq" class="btn btn-light mt-3">
<i class="bi bi-chevron-right"></i> Read More
</a>
</div>
</div>
</div>
</section>
<section id="game" class="bg-dark text-light">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-md p-5">
<h2>Learn through our game!</h2>
<p class="lead">
Learn how to be a better listener
</p>
<p>
The main character just enrolled into Pawsitive, a school for animals.
He is greeted by Principal Brown and is introduced to a useful guide to free mental health services.
As he encounters new friends, he learns to communicate better and helps them resolve their issues
</p>
<a href="index2.html">
<button class="btn btn-danger btn-lg">
Play our game!
</button>
</a>
</div>
<div class="col-md">
<img src="static/images/logo.png" width="1000" height="1000" class="img-fluid d-none d-sm-block biglogo" alt="" />
</div>
</div>
</div>
</section>
<!-- Question Accordion -->
<section id="faq" class="p-5">
<div class="container">
<h2 class="text-center mb-4">Frequently Asked Questions</h2>
<div class="accordion accordion-flush" id="questions">
<!-- Item 1 -->
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#question-one">
What should I do if the person suffering does not have anybody to call or rejects external
help?
</button>
</h2>
<div id="question-one" class="accordion-collapse collapse" data-bs-parent="#questions">
<div class="accordion-body">
You can try other support systems:
<ul>
<li>Within the organisation, it can be:
<ul>
<li>Speaking to someone from HR or with their boss</li>
<li>In-house counsellors or psychologists</li>
</ul>
</li>
<li>Externally, it can be:
<ul>
<li>Family doctor</li>
<li>Neighbour</li>
<li>Social worker</li>
</ul>
</li>
</ul>
When the person refuses any help, you can provide them with help hotlines so that they could
call in their own time.
</div>
</div>
</div>
<!-- Item 2 -->
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#question-two">
Can someone with mild mental problems like depression be trained as a PFA provider?
</button>
</h2>
<div id="question-two" class="accordion-collapse collapse" data-bs-parent="#questions">
<div class="accordion-body">
Yes, anyone can be trained in PFA.
<br>
<br>
You have to be capable of taking care of yourself before you can be deployed to help others.
</div>
</div>
</div>
</div>
</section>
<!-- More Links-->
<section id="more" class="p-5">
<div class="container">
<h2 class="text-center mb-4">More on PFA</h2>
<ul class="list-group list-group-flush lead">
<li class="list-group-item">
<a href="https://www.mom.gov.sg/employment-practices/sgsecure/resources/psychological-first-aid">
Ministry of Manpower
</a>
</li>
<li class="list-group-item">
<a href="https://www.firstaidtraining.com.sg/psychological-first-aid-course">
SgFirstAid
</a>
</li>
<li class="list-group-item">
<a href="https://www.redcross.sg/get-trained/psychological-first-aid.html">
Singapore Red Cross
</a>
</li>
<li class="list-group-item">
<a href="https://sera.sg/e/psychological-first-aid/">
SERA, Singapore
</a>
</li>
</ul>
</div>
</section>
<!-- Footer -->
<footer class="p-5 bg-white text-dark text-center position-relative">
<div class="container">
<p class="lead">Copyright © 2022 Pawsitive</p>
<a href="#" class="position-absolute bottom-0 end-0 p-5">
<i class="bi bi-arrow-up-circle h1"></i>
</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
</body>
</html>