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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
| <html> <head></head> <body></body> </html>
<a href="url">链接文本</a>
<p>段落</p>
<h1>一号标题</h1>
<b>粗体</b> <strong>粗体</strong> <i>斜体</i> <em>斜体</em>
<img src="url" alt="some_text" title="" width="width_px" height="height_px">
<a href="http://www.runoob.com/" target="_blank">访问菜鸟教程!</a>
每30秒钟刷新当前页面: <meta http-equiv="refresh" content="30">
table: 占2Row 行 占2Col 列 <th rowspan="2" colspan="2"></th> <tr></tr> :table row <td></td> :table data
边框粗细 单元格间距 单元格边距 <table border="1" cellspacing="0" cellpadding="10"> <tr> <th>Header 1</th> 表头 <th>Header 2</th> </tr> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table>
<ul> :unordered list 无序列表 <li></li> </ul>
<ol start="50"> :ordered list 有序列表 start="开始序号" <li></li> </ol>
<h4>编号列表:</h4> <ol> </ol>
<h4>大写字母列表:</h4> <ol type="A"> </ol>
<h4>小写字母列表:</h4> <ol type="a"> </ol>
<h4>罗马数字列表:</h4> <ol type="I" start="401"> </ol>
<h4>小写罗马数字列表:</h4> <ol type="i"> </ol>
<h4>圆点列表:</h4> <ul type="disc"></ul> <==> <ul style="list-style-type:disc"> </ul>
<h4>圆圈列表:</h4> <ul style="list-style-type:circle"> </ul>
<h4>正方形列表:</h4> <ul style="list-style-type:square"> </ul>
|