-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprograms.html
More file actions
167 lines (152 loc) · 5.85 KB
/
programs.html
File metadata and controls
167 lines (152 loc) · 5.85 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pacesetters Foundation — Our Programs</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- ===== HEADER ===== -->
<header class="header">
<div class="container header-flex">
<a href="index.html" class="brand">
<div class="logo">PF</div>
<div>
<h1 class="title">Pacesetters Foundation</h1>
<small class="tagline">Empowering communities across Ghana</small>
</div>
</a>
<nav class="nav">
<a href="index.html">Home</a>
<a href="programs.html" class="active">Programs</a>
<a href="donate.html">Donate</a>
</nav>
<button class="nav-toggle" aria-label="Menu">☰</button>
</div>
</header>
<!-- ===== HERO ===== -->
<section class="hero small">
<img src="images/hero-programs.jpg" alt="Programs banner" class="hero-img">
<div class="overlay">
<h2>Our Programs & Initiatives</h2>
<p>Building lasting impact through education, health, and youth development.</p>
</div>
</section>
<main>
<!-- ===== PROGRAMS GRID ===== -->
<section class="section container">
<h3 class="section-title">Core Focus Areas</h3>
<div class="grid-3 reveal">
<div class="program-card">
<img src="images/education.jpg" alt="Education">
<h4>Education & Literacy</h4>
<p>Providing scholarships, mentorship, and school supplies for disadvantaged children.</p>
</div>
<div class="program-card">
<img src="images/health.jpg" alt="Health">
<h4>Health & Sanitation</h4>
<p>Organizing community health outreach programs and health education campaigns.</p>
</div>
<div class="program-card">
<img src="images/youth.jpg" alt="Youth Empowerment">
<h4>Youth Empowerment</h4>
<p>Training youth in digital, entrepreneurial, and vocational skills for sustainable livelihoods.</p>
</div>
</div>
</section>
<!-- ===== STAKEHOLDERS ===== -->
<section class="section pale">
<div class="container">
<h3 class="section-title">Stakeholders & Partners</h3>
<div class="grid-3 reveal">
<div class="card">
<h4>Ministry of Education</h4>
<p>Collaborates in expanding school programs and resources nationwide.</p>
</div>
<div class="card">
<h4>Ghana Health Service</h4>
<p>Supports our community outreach and health screening initiatives.</p>
</div>
<div class="card">
<h4>Corporate Sponsors</h4>
<p>Provide logistical and financial backing for our empowerment projects.</p>
</div>
</div>
</div>
</section>
<!-- ===== TEAM PROFILES ===== -->
<section class="section container">
<h3 class="section-title">Meet Our Team</h3>
<p class="intro">A dedicated group of professionals driving the mission forward.</p>
<div class="team-grid reveal">
<div class="profile-card">
<img src="images/profile1.jpg" alt="Executive Director">
<div class="profile-info">
<h4>Jane Doe</h4>
<p>Executive Director</p>
<p>Oversees strategic partnerships and organizational growth initiatives.</p>
</div>
</div>
<div class="profile-card delay-1">
<img src="images/profile2.jpg" alt="Programs Lead">
<div class="profile-info">
<h4>Kwame Mensah</h4>
<p>Programs Lead</p>
<p>Coordinates project design, monitoring, and evaluation across regions.</p>
</div>
</div>
<div class="profile-card delay-2">
<img src="images/profile3.jpg" alt="Finance Officer">
<div class="profile-info">
<h4>Abena Kusi</h4>
<p>Finance & Grants Officer</p>
<p>Manages budgets, grants, and donor accountability frameworks.</p>
</div>
</div>
<div class="profile-card delay-3">
<img src="images/profile4.jpg" alt="Communications Manager">
<div class="profile-info">
<h4>Samuel Opoku</h4>
<p>Communications Manager</p>
<p>Handles media relations, branding, and public advocacy campaigns.</p>
</div>
</div>
</div>
</section>
<!-- ===== BENEFICIARIES ===== -->
<section class="section pale">
<div class="container">
<h3 class="section-title">Beneficiaries & Impact Stories</h3>
<div class="grid-2 reveal">
<div class="card">
<p><strong>Akua Adjei</strong>, Tailoring Apprentice</p>
<p>“Through the Foundation’s training program, I gained skills and started my own shop.”</p>
</div>
<div class="card">
<p><strong>Joseph Owusu</strong>, Student Beneficiary</p>
<p>“The scholarship program helped me stay in school when my parents couldn’t afford fees.”</p>
</div>
</div>
</div>
</section>
</main>
<!-- ===== FOOTER ===== -->
<footer class="footer">
<div class="container footer-grid">
<div>
<strong>Pacesetters Foundation</strong><br>
<small>© 2025 All Rights Reserved</small>
</div>
<nav class="footer-nav">
<a href="index.html">Home</a>
<a href="programs.html" class="active">Programs</a>
<a href="donate.html">Donate</a>
</nav>
</div>
</footer>
<!-- Back to top -->
<button id="topBtn" title="Back to top">↑</button>
<script src="script.js"></script>
</body>
</html>