Untitled
1 hour ago in Plain Text
<!DOCTYPE html>
<html>
<head>
<title>A Special Letter for You ❤️</title>
<style>
body {
background: #ffe6ea;
font-family: "Georgia", serif;
text-align: center;
padding: 40px;
}
.letter-box {
background: white;
padding: 30px;
border-radius: 15px;
width: 80%;
margin: auto;
box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
h1 {
color: #d6336c;
}
p {
font-size: 18px;
line-height: 1.6;
color: #333;
}
</style>
</head>
<body>
<div class="letter-box">
<h1>To My Love ❤️</h1>
<p>Hi Raghava,<br><br>
I just wanted to say something in a special way…<br><br>
You make my days brighter, my heart lighter, and my world happier.
I feel lucky to have you in my life.
Thank you for being you.
<br><br>
With all my love,<br>
Your Baby 💖
</p>
</div>
</body>
</html>