UNPKG

calci5j6

Version:
48 lines (43 loc) 1.17 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>College Web Home Page</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <h1>Welcome to College Name</h1> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Courses</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <section id="banner"> <h2>Learn, Explore, Excel!</h2> <p>Join our prestigious college and unlock your potential.</p> <a href="#" class="cta-button">Apply Now</a> </section> <section id="about"> <h2>About</h2> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> </section> <section id="courses"> <h2>Courses</h2> <ul> <li>Course A</li> <li>Course B</li> <li>Course C</li> <li>Course D</li> </ul> </section> <footer> <p>&copy; 2023 College Name. All rights reserved.</p> </footer> <script src="script.js"></script> </body> </html>