-
Notifications
You must be signed in to change notification settings - Fork 0
/
signs.html
93 lines (77 loc) · 2.53 KB
/
signs.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
<!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">
<title> Autism Spectrum Awareness </title>
<link rel = "stylesheet" href=style.css>
<link rel="icon" href="favicon.jpg" type="image/x-icon">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
</head>
<body>
<header>
<div class="hcontainer">
<h1>
What are the signs of autism?
</h1>
<h2>
One of the most important things you can do as a parent or caregiver is to learn the early signs
</h2>
</div>
</header>
<section class="features">
<div class="container">
<h1>
If you have concerns, get your child screened and contact your healthcare provider
</h1>
<img src="icon1.png" alt="" width="25%">
<div class="borders">
<h2>By 6 months</h2>
<p><ul>
<li>Few or no big smiles or other warm, joyful and engaging expressions </li>
<li>Limited or no eye contact </li></ul></p>
</div>
<div class="borders">
<h2>By 9 months</h2>
<p><ul><li>Little or no back-and-forth sharing of sounds, smiles or other facial expressions</li></ul></p>
</div>
<div class="borders">
<h2>By 12 months</h2>
<p><ul>
<li>Little or no babbling </li>
<li>Little or no back-and-forth gestures such as pointing, showing, reaching or waving </li>
<li>Little or no response to name </li></ul></p>
</div>
<div class="borders">
<h2>By 16 months</h2>
<p><ul><li>Very few or no words</li></ul></p>
</div>
<div class="borders">
<h2>By 24 months</h2>
<p><ul><li>Very few or no meaningful, two-word phrases (not including imitating or repeating)</li></ul></p>
</div>
<div class="borders">
<h2>At any age</h2>
<p><ul>
<li>Loss of previously acquired speech, babbling or social skills </li>
<li>Avoidance of eye contact</li>
<li>Difficulty understanding other people’s feelings </li>
<li>Persistent repetition of words or phrases (echolalia) </li>
<li>Resistance to minor changes in routine or surroundings </li>
<li>Repetitive behaviors (flapping, rocking, spinning, etc.) </li>
</ul></p>
</div>
<p><a href="statistics.html">What are the ASD statistics?</a></p>
</div>
</section>
<footer>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contacts.html">Contacts</a></li>
</ul>
<p>© All rights reserved.</p>
</footer>
</body>
</html>