用HTML布置一个登记客户投诉的页面,CSS用Bookstrap的。
时间: 2023-05-24 21:03:08 浏览: 268
一个HTML注册页面
5星 · 资源好评率100%
<!DOCTYPE html>
<html>
<head>
<title>登记客户投诉</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--引入Bootstrap样式-->
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h2>登记客户投诉</h2>
<form>
<div class="form-group">
<label for="name">姓名:</label>
<input type="text" class="form-control" id="name" placeholder="请输入姓名">
</div>
<div class="form-group">
<label for="phone">电话:</label>
<input type="text" class="form-control" id="phone" placeholder="请输入电话">
</div>
<div class="form-group">
<label for="complaint">投诉内容:</label>
<textarea class="form-control" rows="5" id="complaint"></textarea>
</div>
<button type="submit" class="btn btn-primary">提交</button>
</form>
</div>
</div>
</div>
<!--引入jQuery和Bootstrap JS-->
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>
阅读全文