!DOCTYPE htmlhtmlhead title平安车主优惠卷发放情况title style body font-family Arial sans-serif; header padding 10px; background-color #f1f1f1;
<!DOCTYPE html>
<html>
<head>
<title>平安车主优惠卷发放情况</title>
<style>
body {
font-family: Arial, sans-serif;
}
.header {
padding: 10px;
background-color: #f1f1f1;
}
.header a {
text-decoration: none;
color: #333;
}
.logo {
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0;
}
.logo img {
max-width: 200px;
}
table {
width: 100%;
border-collapse: collapse;
}
table th, table td {
padding: 10px;
border: 1px solid #ddd;
}
table th {
background-color: #f1f1f1;
}
</style>
</head>
<body>
<div class="header">
<a href="#">返回</a>
</div>
<div class="logo">
<img src="logo.png" alt="Logo">
</div>
<table>
<thead>
<tr>
<th>发放人</th>
<th>接收人</th>
<th>优惠券详情</th>
<th>接收时间</th>
<th>接收手机号</th>
</tr>
</thead>
<tbody>
<tr>
<td>张三</td>
<td>李四</td>
<td>保养5折优惠券</td>
<td>2021-01-01 09:00</td>
<td>1234567890</td>
</tr>
<tr>
<td>王五</td>
<td>赵六</td>
<td>免费轮胎更换</td>
<td>2021-01-02 14:30</td>
<td>9876543210</td>
</tr>
<!-- 添加更多行 -->
</tbody>
</table>
</body>
</html
原文地址: http://www.cveoy.top/t/topic/iXFN 著作权归作者所有。请勿转载和采集!