0% found this document useful (0 votes)
11 views1 page

HTML

This document is an HTML template for a personal webpage titled 'Mari's Personal Page'. It features a pink background and a header with the name 'Mari', along with a welcome message indicating a lack of a bio. The page is styled using CSS for a simple and clean design.

Uploaded by

kmwyrpp95j
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

HTML

This document is an HTML template for a personal webpage titled 'Mari's Personal Page'. It features a pink background and a header with the name 'Mari', along with a welcome message indicating a lack of a bio. The page is styled using CSS for a simple and clean design.

Uploaded by

kmwyrpp95j
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

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>

You might also like