Add files via upload

This commit is contained in:
nuttylmao
2025-03-22 04:07:38 +11:00
committed by GitHub
commit b0a8a62d44
+51
View File
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Simple Page</title>
<style>
/* Optional: Basic CSS Styling */
body {
font-family: sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: #f0f0f0;
padding: 20px;
text-align: center;
}
main {
flex-grow: 1;
padding: 20px;
}
footer {
background-color: #e0e0e0;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Page</h1>
</header>
<main>
<p>This is the main content area.</p>
</main>
<footer>
<p>&copy; 2024 My Website</p>
</footer>
</body>
</html>