-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (84 loc) · 3.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Ardoyna Project</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>The Ardoyna Project</h1>
<p>Empowering children with autism through the magic of blue spaces</p>
</div>
</header>
<nav>
<div class="container">
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#mission">Our Mission</a></li>
<li><a href="#get-involved">Get Involved</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<main>
<section id="about">
<div class="container">
<h2>About The Ardoyna Project</h2>
<p>
The Ardoyna Project is a unique charity dedicated to bringing joy and tranquility to children with autism.
Using a beautifully restored old wooden boat, we take small groups of children onto the ocean, allowing
them to experience the calming and therapeutic effects of blue spaces.
</p>
<p>
The boat, named *Ardoyna*, is more than a vessel—it's a safe haven where children can connect with
nature, explore their senses, and find peace.
</p>
</div>
</section>
<section id="mission">
<div class="container">
<h2>Our Mission</h2>
<p>
We believe every child deserves a moment of calm, an opportunity to feel the wind in their hair,
and the soothing rhythm of ocean waves. Our mission is to use the therapeutic power of blue spaces
to improve the mental health and well-being of children with autism, offering them experiences
that foster joy, connection, and growth.
</p>
<blockquote>
“The ocean stirs the heart, inspires the imagination, and brings eternal joy to the soul.” – Wyland
</blockquote>
</div>
</section>
<section id="get-involved">
<div class="container">
<h2>Get Involved</h2>
<p>
Whether you're a parent, a volunteer, or a supporter, there are many ways to help The Ardoyna Project thrive:
</p>
<ul>
<li>Donate to keep our boat sailing and our programs running.</li>
<li>Volunteer your time to support our outings and events.</li>
<li>Spread the word about our mission to reach more families in need.</li>
</ul>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<p>
Want to learn more or get involved? We'd love to hear from you!
</p>
<p>Email us at: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 The Ardoyna Project. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>