Untitled
unknown
plain_text
a month ago
2.9 kB
4
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Our School</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #333; color: #fff; padding: 10px 0; text-align: center; } nav { margin: 20px 0; text-align: center; } nav a { margin: 0 15px; color: #333; text-decoration: none; font-weight: bold; } section { padding: 20px; margin: 0 10px; background-color: #fff; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } footer { background-color: #333; color: #fff; text-align: center; padding: 10px 0; position: fixed; bottom: 0; width: 100%; } .contact-form input, .contact-form textarea { width: 100%; padding: 10px; margin: 5px 0; border: 1px solid #ccc; border-radius: 5px; } .contact-form button { padding: 10px 15px; border: none; background-color: #333; color: #fff; cursor: pointer; border-radius: 5px; } </style> </head> <body> <header> <h1>Welcome to Our School</h1> </header> <nav> <a href="#about">About Us</a> <a href="#courses">Courses</a> <a href="#contact">Contact Us</a> </nav> <section id="about"> <h2>About Us</h2> <p>Our school provides excellent education to students from kindergarten to high school. We focus on holistic development and offer a variety of extracurricular activities.</p> </section> <section id="courses"> <h2>Courses Offered</h2> <ul> <li>Mathematics</li> <li>Science</li> <li>English</li> <li>History</li> <li>Physical Education</li> </ul> </section> <section id="contact"> <h2>Contact Us</h2> <form class="contact-form" action="/submit-form" method="post"> <input type="text" name="name" placeholder="Your Name" required> <input type="email" name="email" placeholder="Your Email" required> <textarea name="message" rows="5" placeholder="Your Message" required></textarea> <button type="submit">Send Message</button> </form> </section> <footer> <p>© 2024 Our School. All rights reserved.</p> </footer> </body> </html>
Leave a Comment