1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| <html> <head> <meta charset="utf-8"> <title>表格TITLE</title> <link href="table.css" rel="stylesheet" type="text/css"> </head> <body> <h1>城市表格</h1> <table> <caption>中国城市</caption> <tr> <th colspan="2">北京</th> </tr> <tr> <th colspan="2">上海</th> </tr> <tr> <th rowspan="2">广东</th> <td>广州</td> </tr> <tr> <td>深圳</td> </tr> <tr> <th colspan="2">天津</th> </tr> <tr> <th rowspan="2">辽宁</th> <td>沈阳</td> </tr> <tr> <td>大连</td> </tr> </table> </body> </html>
|