0% found this document useful (0 votes)
149 views2 pages

Birthday Card - HTML

The document is an HTML template for a birthday wish card. It features a cheerful design with a message wishing the recipient a fantastic year ahead. The card includes a button labeled 'Celebrate Now' for interactive engagement.

Uploaded by

mouryasandip47
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
149 views2 pages

Birthday Card - HTML

The document is an HTML template for a birthday wish card. It features a cheerful design with a message wishing the recipient a fantastic year ahead. The card includes a button labeled 'Celebrate Now' for interactive engagement.

Uploaded by

mouryasandip47
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

02-22, 8:52 AM

<!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>

You might also like