<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mari's Personal Page</title>
<style>
body {
background-color: pink;
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
}
header {
background-color: #f0e68c;
padding: 20px;
}
h1 {
color: #333;
}
p {
font-size: 18px;
color: #555;
}
</style>
</head>
<body>
<header>
<h1>Mari</h1>
</header>
<main>
<p>Welcome to my personal webpage! Unfortunately, I don't have a bio to
share at the moment, but I hope you enjoy the pink theme.</p>
</main>
</body>
</html>