作业
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div>
<h1>表格</h1>
</div>
<div>
<table
border="1"
align="center"
width="90%"
cellspacing="0"
cellpadding="5"
bgcolor="lightskyblue"
>
<caption>
<h1>采购样表</h1>
</caption>
<tr>
<th>时间</th>
<th>序号</th>
<th>名称</th>
<th>价格</th>
<th>数量</th>
</tr>
<tr>
<td rowspan="3">上午</td>
<td>1</td>
<td>电脑</td>
<td>5500</td>
<td>3</td>
</tr>
<tr>
<td>2</td>
<td>电话</td>
<td>3200</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>耳机</td>
<td>6700</td>
<td>1</td>
</tr>
<tr>
<td rowspan="2">下午</td>
<td>4</td>
<td>移动电话</td>
<td>2123</td>
<td>2</td>
</tr>
<tr>
<td>5</td>
<td>电视</td>
<td>1999</td>
<td>1</td>
</tr>
</table>
</div>
</body>
</html>