-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprograms.html
More file actions
68 lines (66 loc) · 4.7 KB
/
Copy pathprograms.html
File metadata and controls
68 lines (66 loc) · 4.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="container">
<div class="logo">
Relvox
</div>
<button class="hamburger" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
<div class="nav-center">
<ul class="nav-links">
<li><a href="./index.html" data-en="Home" data-fr="Accueil">Home</a></li>
<li><a href="./programs.html" data-en="Programs" data-fr="Programmes">Programs</a></li>
<li><a href="./bootcamp.html" data-en="Boot Camps" data-fr="Boot Camps">BootCamp 2026</a></li>
<li><a href="./voices.html" data-en="Voices" data-fr="Voix">Voices</a></li>
<li><a href="./impact.html" data-en="Impact" data-fr="Impact">Impact</a></li>
</ul>
<div class="language-switch">
<div class="lang-option active" data-lang="en">EN</div>
<div class="lang-option" data-lang="fr">FR</div>
</div>
</div>
</nav>
<section id="programs" class="programs">
<div class="container">
<h2 class="section-title fade-in" data-en="Our Programs" data-fr="Nos Programmes">Our Programs</h2>
<div class="programs-grid">
<div class="program-card fade-in">
<h3 data-en="Education & Skills Development" data-fr="Éducation et Développement des Compétences">Education & Skills Development</h3>
<p data-en="Providing quality education and vocational training to empower individuals with the skills needed for economic growth and personal development." data-fr="Fournir une éducation de qualité et une formation professionnelle pour autonomiser les individus avec les compétences nécessaires à la croissance économique et au développement personnel.">Providing quality education and vocational training to empower individuals with the skills needed for economic growth and personal development.</p>
</div>
<div class="program-card fade-in">
<h3 data-en="Interview Series" data-fr="Séries d'interview">Interview Series</h3>
<p data-en="Supporting local communities through capacity building initiatives that strengthen governance and promote inclusive participation in development processes." data-fr="Soutenir les communautés locales par des initiatives de renforcement des capacités qui renforcent la gouvernance et favorisent la participation inclusive aux processus de développement.">Supporting local communities through capacity building initiatives that strengthen governance and promote inclusive participation in development processes.</p>
</div>
<div class="program-card fade-in">
<h3 data-en="Economic Development" data-fr="Développement Économique">Economic Development</h3>
<p data-en="Fostering entrepreneurship and supporting small businesses to create sustainable livelihoods and drive economic growth in rural and urban areas." data-fr="Favoriser l'entrepreneuriat et soutenir les petites entreprises pour créer des moyens de subsistance durables et stimuler la croissance économique dans les zones rurales et urbaines.">Fostering entrepreneurship and supporting small businesses to create sustainable livelihoods and drive economic growth in rural and urban areas.</p>
</div>
<div class="program-card fade-in">
<h3 data-en="Social Innovation" data-fr="Innovation Sociale">Social Innovation</h3>
<p data-en="Leveraging technology and innovative approaches to address social challenges and improve access to essential services." data-fr="Tirer parti de la technologie et d'approches innovantes pour relever les défis sociaux et améliorer l'accès aux services essentiels.">Leveraging technology and innovative approaches to address social challenges and improve access to essential services.</p>
</div>
</div>
</div>
</section>
<!-- ===== FOOTER ===== -->
<footer>
<div class="container">
<p data-en="© 2026 Relvox. Release your potential." data-fr="© 2026 Relvox. Release your potential.">
© 2026 Relvox. Release your potential.
</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>