Blogger Information
Blog 7
fans 0
comment 0
visits 3442
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0629作业
曾宇的博客
Original
332 people have browsed it

<!DOCTYPE html>

<html lang="en">

<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>表格</title>
</head>

<body>
<table border="1">
<caption>
记账表
</caption>
<thead>
<tr align="center">
<th>名称</th>
<th>数量</th>
<th>金额</th>
</thead>
<tbody>
<tr>
<td>白菜</td>
<td>1</td>
<td>5</td>
</tr>
<tr>
<td>菠菜</td>
<td>2</td>
<td>10</td>
</tr>
<tr>
<td>大米</td>
<td>10</td>
<td>80</td>
</tr>

</tbody>
<tfoot>
<tr>
<td>总和</td>
<td>13</td>
<td>95</td>
</tr>
</tfoot>



</table>

</body>

</html>

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:代码格式注意一下, 用markdown代码块, 就是三个反引号
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!