用js写一个楼房的联系我们页面
时间: 2024-05-13 17:19:56 浏览: 65
HTML5+CSS3 联系我们页面.pdf
好的,以下是一个简单的楼房联系我们页面的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>联系我们</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
h1 {
text-align: center;
margin: 50px 0;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border-radius: 5px;
}
.form-group {
display: flex;
flex-direction: column;
margin: 10px;
width: 100%;
}
label {
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"], textarea {
padding: 10px;
border: none;
border-radius: 3px;
background-color: #f2f2f2;
resize: none;
font-size: 16px;
margin-bottom: 10px;
}
input[type="submit"] {
background-color: #4CAF50;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 3px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<h1>联系我们</h1>
<div class="container">
<form name="contactForm" method="post" action="submit-form.php">
<div class="form-group">
<label for="name">姓名</label>
<input type="text" id="name" name="name" placeholder="请输入您的姓名" required>
</div>
<div class="form-group">
<label for="email">电子邮件</label>
<input type="text" id="email" name="email" placeholder="请输入您的电子邮件" required>
</div>
<div class="form-group">
<label for="phone">电话</label>
<input type="text" id="phone" name="phone" placeholder="请输入您的电话号码" required>
</div>
<div class="form-group">
<label for="message">消息</label>
<textarea id="message" name="message" placeholder="请输入您想要发送的消息" required></textarea>
</div>
<div class="form-group">
<input type="submit" value="提交">
</div>
</form>
</div>
</body>
</html>
```
这是一个基本的 HTML 页面,包含一个表单,用户可以填写他们的姓名、电子邮件、电话和消息,并通过提交按钮将此信息发送给指定的 URL。您需要将 `submit-form.php` 替换为实际用于处理表单数据的服务器端脚本的 URL。您还可以根据需要修改样式或表单字段。
注意,这只是一个基本的示例,实际的联系我们页面可能需要更多的表单字段或其他功能。
阅读全文