下面是一个简单的HTML和CSS代码示例,用于创建一个生日留言的网页。这个网页包含一个生日祝福的留言框和提交按钮。当用户在留言框中输入内容并点击提交按钮时,会显示一条感谢消息。
```html
body {
fontfamily: Arial, sansserif;
margin: 0;
padding: 0;
backgroundcolor: f0f0f0;
}
.container {
width: 80%;
margin: 50px auto;
backgroundcolor: fff;
padding: 20px;
borderradius: 10px;
boxshadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
textalign: center;
color: 333;
}
textarea {
width: 100%;
height: 100px;
marginbottom: 20px;
padding: 10px;
border: 1px solid ccc;
borderradius: 5px;
resize: none;
}
button {
backgroundcolor: 4caf50;
color: fff;
border: none;
padding: 10px 20px;
cursor: pointer;
borderradius: 5px;
}
button:hover {
backgroundcolor: 45a049;
}
.message {
textalign: center;
margintop: 20px;
fontsize: 18px;
color: 333;
}
生日留言
function submitMessage() {
var message = document.getElementById("message").value;
if (message.trim() !== "") {
document.getElementById("thankyou").style.display = "block";
document.getElementById("message").value = "";
// 这里可以添加将留言提交到服务器的代码
} else {
alert("请输入您的生日祝福!");
}
}