You are on page 1of 4

<!

DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Bagonbon Elementary School</title>

<style>

body {

font-family: Arial, sans-serif;

margin: 0;

padding: 0;

box-sizing: border-box;

header {

background-color: #3498db;

color: #fff;

text-align: center;

padding: 1em;

nav {

background-color: #2c3e50;

color: #fff;

text-align: center;

padding: 0.5em;

main {
padding: 1em;

footer {

background-color: #2c3e50;

color: #fff;

text-align: center;

padding: 1em;

position: fixed;

bottom: 0;

width: 100%;

@media only screen and (max-width: 600px) {

nav {

display: block;

nav a {

display: block;

padding: 0.5em;

text-decoration: none;

color: #fff;

</style>

</head>

<body>
<header>

<h1>Bagonbon Elementary School</h1>

</header>

<nav>

<a href="#about">About Us</a>

<a href="#programs">Programs</a>

<a href="#contact">Contact</a>

</nav>

<main>

<section id="about">

<h2>About Us</h2>

<p>Welcome to Bagonbon Elementary School! We are dedicated to providing quality education and
fostering a positive learning environment for our students.</p>

</section>

<section id="programs">

<h2>Programs</h2>

<p>Explore our diverse educational programs designed to cater to the unique needs and interests of
each student. We offer a variety of extracurricular activities to enrich the learning experience.</p>

</section>

<section id="contact">

<h2>Contact</h2>

<p>Reach out to us for more information or to schedule a visit. Our dedicated staff is here to assist
you!</p>

</section>

</main>
<footer>

<p>&copy; 2024 Bagonbon Elementary School. All rights reserved.</p>

</footer>

</body>

</html>

You might also like