Untitled
unknown
plain_text
2 years ago
854 B
7
Indexable
<!DOCTYPE html>
<html>
<head>
<title>Happy Birthday!</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
}
.container {
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
margin: 20px;
max-width: 600px;
margin: 0 auto;
}
h1 {
color: #333;
}
p {
font-size: 18px;
}
</style>
</head>
<body>
<div class="container">
<h1>Happy Birthday!</h1>
<p>Wishing you a day filled with joy, laughter, and all the things you love. May this year be your best one yet!</p>
<p>From, [Your Name]</p>
</div>
</body>
</html>
Editor is loading...