progodyssey/public/index.html

109 lines
3.4 KiB
HTML
Raw Normal View History

2024-08-31 16:06:03 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Progyssey Traineeship Program</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
2024-08-31 16:06:03 +03:00
<!-- Header Section -->
<header>
<div class="logo-container">
<img src="images/logo.png" alt="TechStep Logo" class="logo" />
</div>
<div class="container">
<h1>Welcome to Progyssey Traineeship</h1>
<p>Where Tech Careers Begin</p>
<a href="#apply" class="cta-button">Apply Now</a>
</div>
2024-08-31 16:06:03 +03:00
</header>
<!-- Program Overview Section -->
<section id="overview">
<div class="container">
<h2>About the Program</h2>
<p>
The Progyssey 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 todays technology landscape.
</p>
</div>
2024-08-31 16:06:03 +03:00
</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>
2024-08-31 16:06:03 +03:00
<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>
2024-08-31 16:06:03 +03:00
<li>
To dive deeper into a fascinating programming language:
<a href="https://learnyouahaskell.github.io/"
>https://learnyouahaskell.github.io/</a
>
</li>
</ul>
</div>
2024-08-31 16:06:03 +03:00
</section>
<!-- Testimonials Section -->
<section id="testimonials">
<div class="container">
<h2>What Our Trainees Say</h2>
<blockquote>
<p>
"Progyssey 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>
<cite>— Ryan Mwangi, Software Developer</cite>
</blockquote>
</div>
2024-08-31 16:06:03 +03:00
</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>
<form id="applicationForm">
<input type="hidden" name="list_id" value="3" />
<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>
<div id="responseMessage"></div>
</div>
2024-08-31 16:06:03 +03:00
</section>
<!-- Footer Section -->
<footer>
<div class="container">
<p>&copy; 2024 Progyssey Traineeship Program. All rights reserved.</p>
</div>
2024-08-31 16:06:03 +03:00
</footer>
<script src="index.js"></script>
</body>
2024-08-31 16:06:03 +03:00
</html>