<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>商户表格</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"> <!-- 引入外部文件 -->
<link rel="stylesheet" type="text/css" href="css/index.css">
<style type="text/css">
*{margin:0;padding:0;}
table{border: 1px solid #ccc;border-collapse:collapse; }
tr th{height: 200px;border: 1px solid #ccc;width: 200px;}
tr td{height: 200px;border: 1px solid #ccc;width: 200px;padding-left:20px}
</style>
</head>
<body>
<table>
<tr>
<th>ID</th>
<th>商户名</th>
<th>名字</th>
<th>卡号</th>
<th>创建时间</th>
</tr>
<tr>
<td>2061</td>
<td>user05</td>
<td>张三</td>
<td>11111111111</td>
<td wi>2019-03-25 15:09:07</td>
</tr>
<tr>
<td>2062</td>
<td>user06</td>
<td>李四</td>
<td>22222222222</td>
<td>2019-03-25 15:09:07</td>
</tr>
<tr>
<td>2061</td>
<td>user07</td>
<td>王五</td>
<td>33333333333</td>
<td>2019-03-25 15:09:07</td>
</tr>
</table>
</body>
</html>