code to create a website about school science program

 Code to create a website about school science program




<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>School Science Fair</title>

<style>

body {background: #f3e5f5; font-family: 'Poppins';}

header {text-align: center; background: #8e24aa; color: white; padding: 40px;}

.project {margin: 20px auto; width: 60%; background: white; padding: 20px; border-radius: 10px;}

.project h2 {color: #8e24aa;}

</style>

</head>

<body>

<header>

  <h1>🔬 Annual School Science Fair 2025</h1>

  <p>Explore, Experiment, Excel!</p>

</header>

<div class="project">

  <h2>Volcano Eruption Model</h2>

  <p>Created by: Grade 8 Students</p>

  <p>This experiment demonstrates a chemical reaction between vinegar and baking soda.</p>

</div>

<div class="project">

  <h2>Solar-Powered Car</h2>

  <p>Created by: Grade 10 Team</p>

  <p>A miniature model that runs using sunlight instead of batteries.</p>

</div>

<footer style="background:#0d47a1; color:white; text-align:center; padding:25px; font-size:22px;">

  © 2025 <a href="https://freecodesforwebsites.blogspot.com/" target="_blank" style="color:#bbdefb; text-decoration:none;">Free Codes for Websites</a> | All rights reserved.

</footer>


</body>

</html>


Comments