-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (97 loc) · 3.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/index.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Youth4Good | Empowering Youth to Make a Difference</title>
<script src="js/cookie.js"></script>
<script src="js/header.js"></script>
</head>
<body> <!-- Header -->
<header>
<h1>Youth4Good</h1>
<p> Empowering Kids to Make a Difference</p>
<nav class="sidebar">
<a href="index.html">Home</a>
<a href="getInvolved.html">Get Involved</a>
<a href="events.html">Events</a>
<a href ="signup.html">Sign Up</a>
<a href = "login.html" id = "login">Log In</a>
<a href = "profile.html" id = "profile" style = "display:none;">Your Profile</a>
</nav>
</header>
<section class="hero">
<h1>We Can Make the World a Better Place!</h1>
<!--<div class="project">
<h3>Our</h3>
<p>Join our mission to inspire kids to take action and make a difference in their communities!</p>
</div>
-->
<button>Join Us Today</button>
<button>Learn More</button>
</section>
<!-- Mission Section -->
<section class="section">
<h2>Our Mission</h2>
<h2>Our mission is to develop leadership skills and good citizenship practices in youngsters through community service.</p>
</section>
<!-- Featured Projects Section -->
<section class="section">
<h2>Featured Projects</h2>
<div class="projects">
<div class="project">
<h3>Serve Meals at the Homeless Shelter</h3>
<p>2023-12-09</p>
</div>
<div class="project">
<h3>LEAF Farm for Low-income Communities</h3>
<p>2023-11-11</p>
</div>
<div class="project">
<h3>Community Halloween Party</h3>
<p>2023-10-29</p>
</div>
</div>
</section>
<!-- Upcoming Events Section -->
<section class="section">
<h2>Upcoming Events</h2>
<div class="events">
<div class="event">
<h3>Virtual Workshop: Making a Difference from Home</h3>
<p>September 15, 2024</p>
</div>
<div class="event">
<h3>Community Cleanup Day</h3>
<p>October 3, 2024</p>
</div>
<div class="event">
<h3>Fundraising Fun Run</h3>
<p>November 12, 2024</p>
</div>
</div>
</section>
<!-- Footer -->
<footer style="background-color: #333; color: white; padding: 30px; text-align: center;">
<div style="margin-bottom: 20px;">
<p>Follow us on:</p>
<p>
<a href="https://www.youtube.com/@youth4good" target="_blank" style="color: white; text-decoration: none;">
<alt="YouTube" style="width: 20px; vertical-align: middle;"> YouTube
</a> |
<a href="https://www.instagram.com/youth_4_good" target="_blank" style="color: white; text-decoration: none;">
<alt="Instagram" style="width: 20px; vertical-align: middle;"> Instagram
</a> |
<a href="https://www.linkedin.com/company/youth4good-non-profit/" target="_blank" style="color: white; text-decoration: none;">
<alt="LinkedIn" style="width: 20px; vertical-align: middle;"> LinkedIn
</a>
</p>
</div>
<div>
<p>© 2024 Youth4Good. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>