Generated on Jan 17, 2025, 9:48:08 AMgemini-1.5-flash
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy Birthday!</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
padding: 20px;
}
.header {
text-align: center;
padding-bottom: 20px;
}
.header img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
.content {
text-align: center;
padding: 20px 0;
}
.content p {
font-size: 16px;
line-height: 1.5;
color: #333333;
}
.footer {
text-align: center;
padding-top: 20px;
font-size: 14px;
color: #777777;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Happy Birthday!</h1>
<img src="path/to/your/birthday-person-image.jpg" alt="Birthday Person"> </div>
<div class="content">
<p>Wishing you a day filled with joy, laughter, and unforgettable moments! May all your wishes come true.</p>
<p>We hope you have a fantastic celebration surrounded by loved ones.</p>
<p>With love and best wishes,</p>
<p>[Your Name/Sender's Name]</p>
</div>
<div class="footer">
<p>© 2023 [Your Name/Sender's Name]</p>
</div>
</div>
</body>
</html>
Remember to replace "path/to/your/birthday-person-image.jpg"
with the actual path to your image file. You'll need to host this HTML file somewhere (like a web server or email service provider that supports HTML emails) to send it. The image will also need to be accessible from the location you host the HTML file.