Week 1 Assignment
<!DOCTYPE html>
<html>
<head>
<title>My Personal Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
</head>
<body style="font-family: monospace, sans-serif; margin: 0; padding: 0;">
<header
style="background-color: #673ab7; color: white; text-align: center; padding: 1rem;"
>
<h1>Welcome to My Page</h1>
</header>
<main style="padding: 20px;">
<section style="margin-bottom: 20px;">
<h2>About Me</h2>
<p>Hello, World! I love coding. I am here to learn CSS.</p>
</section>
<section>
<h2>My Interests</h2>
<ul>
<li>Coding</li>
<li>Coding</li>
<li>Coding</li>
</ul>
</section>
</main>
<footer
style="background-color: #673ab7; color: white; text-align: center; padding: 1rem; position: fixed; bottom: 0; width: 100%;"
>
<p>© 2023 My Page. All rights reserved.</p>
</footer>
</body>
</html>Last updated