<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple HTML Page</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
}
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1em;
}
section {
padding: 2em;
text-align: center;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Simple Page</h1>
</header>
<section>
<h2>About This Page</h2>
<p>This is a simple HTML page created to demonstrate basic structure.</p>
<p>Feel free to modify the content and style!</p>
</section>
<footer>
<p>© 2025 My Simple Page</p>
</footer>
</body>
</html>