Untitled
1 hour ago in HTML
<!DOCTYPE html>
<html>
<head>
<title>For You ❤️</title>
<style>
body {
background: #ffe6f0;
font-family: "Poppins", sans-serif;
text-align: center;
padding: 40px;
}
.card {
background: white;
border-radius: 20px;
padding: 30px;
box-shadow: 0 0 20px rgba(0,0,0,0.2);
width: 80%;
margin: auto;
}
h1 {
color: #e60073;
margin-bottom: 10px;
}
p {
color: #444;
font-size: 18px;
}
video {
width: 90%;
border-radius: 15px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="card">
<h1>Hey Raghava ❤️</h1>
<p>I made this little surprise just for you 💕</p>
<video controls autoplay>
<source src="https://cdn.pixabay.com/vimeo/742280873/romantic-129270.mp4?width=1280&hash=f68b2efb4cfa5a4c4df4b1f557b8a7b3b06e5e78" type="video/mp4">
Your browser does not support video playback.
</video>
<p>Every second with you feels special.
You are my happiness. 💖</p>
</div>
</body>
</html>