<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Halaman Web Sederhana</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
padding: 20px;
}
header {
text-align: center;
padding: 10px;
background-color: #f2f2f2;
}
main {
margin-top: 20px;
}
footer {
text-align: center;
padding: 10px;
background-color: #f2f2f2;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Selamat Datang di Halaman Web Sederhana</h1>
</header>
<main>
<section>
<h2>Sebuah Section</h2>
<p>Ini adalah paragraf dalam section.</p>
</section>
<section>
<h2>Section Lainnya</h2>
<p>Ini adalah paragraf dalam section lainnya.</p>
</section>
</main>
<footer>
<p>Hak Cipta © 2023 Halaman Web Sederhana</p>
</footer>
</body>
</html>
Tidak ada komentar:
Posting Komentar