-
Notifications
You must be signed in to change notification settings - Fork 1
/
awareness.html
68 lines (63 loc) · 2.26 KB
/
awareness.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Steps to Take During a Stroke</title>
<style>
body {
font-family: sans-serif;
line-height: 1.5;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
.steps {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 20px 0;
}
.step {
width: calc(33% - 20px);
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
.step img {
width: 100%;
display: block;
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>F.A.S.T. - Recognizing a Stroke</h1>
<p>Time is critical when responding to a stroke. Remember the acronym F.A.S.T. to identify the signs and take immediate action.</p>
<section class="steps">
<article class="step">
<h2>Face</h2>
<p>Has the person's face dropped or become uneven? Ask them to smile. Does one side of their face droop?</p>
<img src="placeholder.png" alt="Image of person smiling unevenly">
</article>
<article class="step">
<h2>Arms</h2>
<p>Can the person raise both arms equally? Ask them to hold their arms out straight for a few seconds. Does one arm drift downward?</p>
<img src="placeholder.png" alt="Image of person holding arms unevenly">
</article>
<article class="step">
<h2>Speech</h2>
<p>Is the person's speech slurred or difficult to understand? Ask them to repeat a simple phrase. Is their speech garbled?</p>
<img src="placeholder.png" alt="Image of person speaking unclearly">
</article>
<article class="step">
<h2>Time</h2>
<p>If you observe any of these signs, call emergency services immediately. Every minute counts!</p>
<img src="placeholder.png" alt="Image of a phone dialing emergency services">
</article>
</section>
<p><b>Remember:</b> F.A.S.T. can help you recognize a stroke quickly. If you see any of these signs, call emergency services right away. Don't wait for the symptoms to pass - a stroke is a medical emergency.</p>
</body>
</html>