<!DOCTYPEhtml>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metaname="viewport"content="width=device-width, initial-scale=1.0">
<title>Neha</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #667eea0%, #764ba2100%);
font-family: 'Arial', sans-serif;
}
.container {
text-align: center;
padding: 40px;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
box-shadow: 020px60px rgba(0, 0, 0, 0.3);
max-width: 600px;
}
h1 {
font-size: 3em;
color: #764ba2;
margin: 0;
text-shadow: 2px2px4px rgba(0, 0, 0, 0.1);
}
.heart {
font-size: 4em;
color: #ff69b4;
animation: pulse 1.5sease-in-outinfinite;
}
@keyframespulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
}
</style>
</head>
<body>
<divclass="container">
<divclass="heart">💖</div>
<h1>Neha is the most beautiful woman in the world</h1>
<divclass="heart">💖</div>
</div>
</body>
</html>