<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Happy Kids School</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
header {
background-color: #ffcc00;
color: #fff;
text-align: center;
padding: 20px 0;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
nav {
background-color: #ff9900;
padding: 10px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: #fff;
font-size: 1.2em;
}
.hero {
background-image: url(‘https://via.placeholder.com/1200×400’);
background-size: cover;
background-position: center;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
.hero h2 {
font-size: 3em;
margin: 0;
}
.content {
padding: 20px;
}
.content h3 {
color: #ff6600;
}
.content p {
line-height: 1.6;
}
.features {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.feature {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
width: 30%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.feature h4 {
color: #ff6600;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<header>
<h1>Happy Kids School</h1>
</header>
<nav>
<ul>
<li><a href=”#about”>About Us</a></li>
<li><a href=”#programs”>Programs</a></li>
<li><a href=”#contact”>Contact</a></li>
</ul>
</nav>
<div class=”hero”>
<h2>Welcome to a World of Learning and Fun!</h2>
</div>
<div class=”content”>
<section id=”about”>
<h3>About Us</h3>
<p>At Happy Kids School, we provide a nurturing environment where children can grow, learn, and play. Our experienced teachers focus on holistic development, ensuring every child reaches their full potential.</p>
</section>
<section id=”programs”>
<h3>Our Programs</h3>
<div class=”features”>
<div class=”feature”>
<h4>Preschool</h4>
<p>Interactive learning for children aged 3-5, focusing on creativity and social skills.</p>
</div>
<div class=”feature”>
<h4>After-School Activities</h4>
<p>Engaging activities like art, music, and sports to keep your child active and inspired.</p>
</div>
<div class=”feature”>
<h4>Summer Camps</h4>
<p>Fun-filled summer programs with exciting themes and activities for all ages.</p>
</div>
</div>
</section>
<section id=”contact”>
<h3>Contact Us</h3>
<p>Email: info@happykidsschool.com</p>
<p>Phone: +123 456 7890</p>
<p>Address: 123 Happy Street, Kidstown, USA</p>
</section>
</div>