<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Happy Onam Greeting</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f7f2e9;
margin: 0;
padding: 0;
text-align: center;
}
.blink {
font-size: 3em;
color: #ff5722;
font-weight: bold;
animation: blinker 1s linear infinite;
margin-top: 20px;
}
@keyframes blinker {
50% { opacity: 0; }
}
p {
font-size: 1.5em;
color: #333;
}
.content {
margin-top: 30px;
}
img {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
footer {
margin-top: 20px;
font-size: 1em;
color: #666;
}
</style>
</head>
<body>
<div class="content">
<h1 class="blink">Happy Onam!</h1>
<p>Wishing you a wonderful Onam filled with joy, prosperity, and blessings!</p>
<img src="https://assets.onecompiler.app/42rsu9yh2/42rsty9mv/illustration-colorful-kathakali-dancer-background-happy-onam-festival-south-india-kerala-kathakali-dancer-120198687.jpg" alt="Onam Celebration Image">
</div>
<footer>
© 2024 Onam Greetings
</footer>
</body>
</html>