使用HTML和css帮我写个可以直接使用的生日祝福网站
时间: 2024-11-06 13:22:07 浏览: 13
html写的生日祝福代码
创建一个简单的生日祝福网站,我们可以使用HTML来构建页面结构,CSS来美化样式。下面是一个基本的示例:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>生日祝福</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
text-align: center;
}
.container {
width: 80%;
max-width: 600px;
margin: 0 auto;
padding: 50px;
background-color: white;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
color: #007bff;
margin-bottom: 20px;
}
p {
font-size: 18px;
line-height: 1.5;
}
button {
display: block;
width: 100%;
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>祝您生日快乐!</h1>
<p>今天是个特别的日子,愿您的生活充满阳光,每一天都比前一天更精彩。</p>
<button id="send-wish">送出我的祝福</button>
</div>
<script>
document.getElementById("send-wish").addEventListener("click", function() {
alert("点击了发送按钮,希望您的生日愿望成真!");
});
</script>
</body>
</html>
```
这个例子中,我们创建了一个包含标题、祝福语句和“送出我的祝福”按钮的简单网页。当用户点击按钮时,会弹出一个提示框显示祝福信息。
阅读全文