Untitled
2 weeks ago in Plain Text
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Surprise ❤</title>
<style>
body {
background-color: #ffe6f0;
font-family: 'Comic Sans MS', cursive, sans-serif;
text-align: center;
padding-top: 100px;
}
h1 {
font-size: 3em;
color: #ff4d88;
animation: pop 1s ease-in-out infinite alternate;
}
@keyframes pop {
from { transform: scale(1); }
to { transform: scale(1.1); }
}
</style>
</head>
<body>
<h1>❤ I Love You, Dheeraj ❤</h1>
</body>
</html>