73 lines
1.3 KiB
HTML
73 lines
1.3 KiB
HTML
<!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>
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f4f4f9;
|
|
color: #333;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
header {
|
|
background: #4a90e2;
|
|
color: #fff;
|
|
padding: 20px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
main {
|
|
padding: 20px;
|
|
max-width: 800px;
|
|
margin: 20px auto;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 15px;
|
|
background-color: #222;
|
|
color: #fff;
|
|
position: relative;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
main {
|
|
margin: 10px;
|
|
padding: 15px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>Welcome to My Website</h1>
|
|
</header>
|
|
|
|
<main>
|
|
<h2>About This Page</h2>
|
|
<p>This is a basic HTML page styled with CSS. You can customize it to fit your needs. It's fully responsive and easy to build upon.</p>
|
|
</main>
|
|
|
|
<footer>
|
|
© 2025 My Website | All rights reserved
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
|