2024-08-31 13:06:03 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
2024-11-14 14:11:28 +00:00
< title > Progodyssey Traineeship Program< / title >
2024-08-31 13:06:03 +00:00
< link rel = "stylesheet" href = "styles.css" >
< / head >
< body >
<!-- Header Section -->
< header >
< div class = "logo-container" >
< img src = "images/logo.png" alt = "TechStep Logo" class = "logo" >
< / div >
< div class = "container" >
2024-11-14 14:11:28 +00:00
< h1 > Welcome to Progodyssey Traineeship< / h1 >
2024-08-31 13:06:03 +00:00
< p > Where Tech Careers Begin< / p >
< a href = "#apply" class = "cta-button" > Apply Now< / a >
< / div >
< / header >
<!-- Program Overview Section -->
< section id = "overview" >
< div class = "container" >
< h2 > About the Program< / h2 >
2024-11-14 14:11:28 +00:00
< p > The Progodyssey Traineeship Program is designed for aspiring IT professionals who want to build a solid foundation in the tech industry. We get to assist you in honing your technical skills for the challenges and opportunities in today’ s technology landscape.< / p >
2024-08-31 13:06:03 +00:00
< / div >
< / section >
<!-- Curriculum Section -->
< section id = "curriculum" >
< div class = "container" >
< h2 > Recommended IT courses< / h2 >
< ul >
< li > Missing Semester - Advanced Computer Skills: < a href = "https://missing.csail.mit.edu/" > https://missing.csail.mit.edu/< / a > < / li >
< li > Programming Overview: < a href = "https://pll.harvard.edu/course/cs50-introduction-computer-science" > https://pll.harvard.edu/course/cs50-introduction-computer-science< / a > < / li >
< li > To dive deeper into a fascinating programming language: < a href = "https://learnyouahaskell.github.io/" > https://learnyouahaskell.github.io/< / a > < / li >
< / ul >
< / div >
< / section >
<!-- Testimonials Section -->
< section id = "testimonials" >
< div class = "container" >
< h2 > What Our Trainees Say< / h2 >
< blockquote >
2024-11-14 14:11:28 +00:00
< p > "Progodyssey Traineeship Program gave me the skills and confidence I needed to start my career in IT. The mentorship and real-world experience were invaluable!"< / p >
2024-08-31 13:06:03 +00:00
< cite > — Ryan Mwangi, Software Developer< / cite >
< / blockquote >
< / div >
< / section >
<!-- Call to Action Section -->
< section id = "apply" >
< div class = "container" >
< h2 > Get Started< / h2 >
< p > Ready to take the next step in your IT career? Apply today!< / p >
2024-11-18 16:11:03 +00:00
< form id = "applicationForm" >
2024-11-14 13:53:04 +00:00
< input type = "hidden" name = "list_id" value = "3" >
2024-08-31 13:06:03 +00:00
< input type = "text" name = "name" placeholder = "Your Name" required >
< input type = "email" name = "email" placeholder = "Your Email" required >
< textarea name = "message" placeholder = "Why are you interested in this program?" required > < / textarea >
< button type = "submit" class = "cta-button" > Submit Application< / button >
< / form >
2024-11-18 16:11:03 +00:00
< div id = "responseMessage" > < / div >
2024-08-31 13:06:03 +00:00
< / div >
< / section >
<!-- Footer Section -->
< footer >
< div class = "container" >
2024-11-14 14:11:28 +00:00
< p > © 2024 Progodyssey Traineeship Program. All rights reserved.< / p >
2024-08-31 13:06:03 +00:00
< / div >
< / footer >
2024-11-14 13:53:04 +00:00
< script src = "index.js" > < / script >
2024-08-31 13:06:03 +00:00
< / body >
< / html >