Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Ilays Academy</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <h1>Ilays Academy</h1> <nav> <ul> <li><a href="#about">About</a></li> <li><a href="#courses">Courses</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header> <section id="hero"> <h2>Empowering the Future</h2> <p>High-quality education for ambitious learners.</p> <a href="#courses" class="btn">Explore Courses</a> </section> <section id="about"> <h2>About Us</h2> <p>Ilays Academy is dedicated to providing top-notch education with a focus on excellence, creativity, and leadership.</p> </section> <section id="courses"> <h2>Our Courses</h2> <div class="course-list"> <div class="course"> <h3>Mathematics</h3> <p>Master problem-solving and logical thinking.</p> </div> <div class="course"> <h3>Science</h3> <p>Explore the wonders of physics, chemistry, and biology.</p> </div> <div class="course"> <h3>Islamic Studies</h3> <p>Learn about Islamic history, values, and principles.</p> </div> </div> </section> <section id="contact"> <h2>Contact Us</h2> <p>Email: info@ilaysacademy.com</p> <p>Phone: +123 456 789</p> </section> <footer> <p>© 2025 Ilays Academy. All rights reserved.</p> </footer> </body> </html>
Leave a Comment