在html中繪製表格使用table標籤
下面是一個列子。
<html> <head> <title>Table in html</title> </head> <body> <p>水平表頭</p> <table border=1> <tr> <th>Name</th> <th>Age</th> <th>Gender</th> </tr> <tr> <td>zdd</td> <td>30</td> <td>male</td> </tr > </table> <p>垂直表頭</p> <table border=1> <tr> <th>Name</th> <td>autumn</td> </tr> <tr> <th> Age</th> <td>30</td> </tr> <tr> <th>Gender</th> <td>famale</td> </tr> </table> </body></ html>
效果圖
水平表頭
Name | Age | Gender |
zdd
|