请帮我写一个HTML的生日祝福代码
时间: 2024-10-11 13:07:37 浏览: 87
html生日快乐源代码
当然可以。以下是一个简单的HTML代码示例,用于创建一个可爱的电子生日卡片,包含一句祝福语:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>生日祝福</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
text-align: center;
}
.card-container {
width: 300px;
padding: 50px;
border: 2px solid #ff69b4;
border-radius: 10px;
margin: 50px auto;
}
h1 {
color: #ff69b4;
margin-bottom: 20px;
}
p {
font-size: 18px;
color: #333;
}
button {
display: block;
padding: 10px 20px;
background-color: #ff69b4;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
font-size: 16px;
margin-top: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
button:hover {
background-color: #e74c3c;
}
</style>
</head>
<body>
<div class="card-container">
<h1>祝你生日快乐!</h1>
<p>愿这一年里你满心欢喜,万事顺意,每一天都充满阳光和微笑。</p>
<button onclick="showConfetti()">点击放飞生日派对彩带吧!</button>
</div>
<script>
function showConfetti() {
alert("Happy Birthday! 祝福已经发送,记得许个愿哦~");
}
</script>
</body>
</html>
```
在这个例子中,我们创建了一个有标题、祝福语和一个模拟"放飞彩带"效果按钮的卡片。当你点击按钮时,会弹出一个提示框显示生日祝福。
阅读全文