File: //www/备份的/ws.umchkw.com/mm.html
<!DOCTYPE html>
<html lang="en">
<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/4.5.3/css/bootstrap.min.css">
<!-- JavaScript 文件 -->
<script src="https://cdn.staticfile.org/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.5.3/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>订单页面</h2>
<form>
<div class="form-group">
<label for="name">姓名:</label>
<input type="name" class="form-control" id="name" placeholder="请输入姓名">
</div>
<div class="form-group">
<label for="phone">电话号码:</label>
<input type="phone" class="form-control" id="phone" placeholder="请输入电话号码">
</div>
<div class <label for="address">地址:</label>
<textarea class="form-control" id="address" rows="3" placeholder="请输入地址"></textarea>
</div>
<table class="table table-bordered">
<thead>
<tr>
<th>商品名称</th>
<th>单价</th>
<th>数量</th>
<th>金额</th>
</tr>
</thead>
<tbody>
<tr>
<td>商品 A</td>
<td>200元</td>
<td>2</td>
<td>400元</td>
</tr>
<tr>
<td>商品 B</td>
<td>100元</td>
<td>3</td>
<td>300元</td>
</tr>
</tbody>
</table>
<button type="submit" class="btn btn-primary btn-block">提交订单</button>
</form>
</div>
</body>
</html>