0% found this document useful (0 votes)
9 views2 pages

HTML

Uploaded by

omoali2011
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views2 pages

HTML

Uploaded by

omoali2011
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

HTML:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Transformation of Classrooms</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #6200ea;
color: #fff;
padding: 20px;
text-align: center;
}

.container {
padding: 20px;
text-align: center;
}
.year {
margin: 20px 0;
padding: 15px;
border: 2px solid #6200ea;
border-radius: 10px;
background-color: #fff;
transition: transform 0.3s, background-color 0.3s;
}
.year:hover {
transform: scale(1.05);
background-color: #e1bee7;
}
h2 {
color: #6200ea;
}
footer {
background-color: #6200ea;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}

</style>
</head>
<body>
<header>
<h1>Transformation of Classrooms</h1>
</header>
<div class="container">
<div class="year">
<h2>1994 Classroom</h2>
<p>Classrooms in 1994 were simple with blackboards, chalk, and wooden
desks. Teachers relied on textbooks and handwritten notes.</p>
</div>
<div class="year">
<h2>2024 Classroom</h2>
<p>Modern classrooms have smartboards, projectors, and laptops.
Students use technology like tablets and online platforms for learning.</p>
</div>
<div class="year">
<h2>2054 Classroom</h2>
<p>Future classrooms might include holograms, virtual reality headsets,
and AI-powered tutors, making learning more immersive and interactive.</p>
</div>
</div>
<footer>
<p>&copy; 2024 Grade 8 Project | Designed by Students</p>
</footer>
</body>
</html>

You might also like