HTML
HTML <table> 元素
一个简单的 HTML 表格,包含两列两行
源代码:
点击运行 »
<table> <tr> <th>月份</th> <th>存款</th> </tr> <tr> <td>一月</td> <td>600元</td> </tr> </table>
运行结果:
点击运行 »