Birthday Card - HTML
Birthday Card - HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<title>Birthday Wish Card</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #fce4ec;
padding: 50px;
}
.card {
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
display: inline-block;
max-width: 400px;
}
h1 {
color: #e91e63;
}
.message {
font-size: 20px;
color: #333;
margin: 20px;
}
.button {
background-color: #e91e63;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
display: inline-block;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="card">
<h1>Happy Birthday!</h1>
<p class="message">Wishing you a fantastic year ahead
filled with love, joy, and success!</p>
<a href="#" class="button">Celebrate Now</a>
</div>
</body>
</html>