<!DOCTYPE HTML>
<html lang="en">
<head>
?<meta charset="UTF-8">
?<title>img</title>
</head>
<body>
<img width="100" src="second/hhhh.png" alt="hahah">
<hr>
<a href="http://www.baidu.com" target="_self" name="dingjiang">百度</a>
<a href="#dingjiang">回去</a>
<!-- 下載,直接給壓縮包地址 -->
<a href="mailto:704537475@qq.com">郵件</a>
<!-- href單"#"表示返回頂部 -->
<br>
<a href="#">返回頂部</a>
<table border="1" width="500" cellspacing="10" cellpadding="20" align="right">
?<!-- cellpadding設(shè)置外邊距? cellspacing 設(shè)置內(nèi)邊距 width 設(shè)置寬度 height 設(shè)置高度 colspan 設(shè)置單元格跨列 rowspan 設(shè)置單元格跨行 -->
?<caption>我的表格</caption>
?<!-- caption 表格的標題 -->
??? <tr>
??? ?<!-- colspan 列合并 后面的數(shù)字代表合并的行數(shù) rowspan 行合并? -->
??? ?<!-- tr 表格的行 -->
??? ?<!--單元格 -->
??? ?<td rowspan="2">測試變革數(shù)據(jù)1</td>
??? ?<td>測試變革數(shù)據(jù)2</td>
??? ?
??? </tr>
??? <tr>
??? ?<!-- 單元格 -->
??? ?<td>測試表格數(shù)據(jù)3</td>
??? ?<td>測試表格數(shù)據(jù)4</td>
??? ?
??? </tr>
</table>
<table>
<ol type="A" start="12">
?<!-- type有5個值,默認是1,還有A,a,I,i,start代表偏移多少 -->
?<!-- ol 是有序列表 -->
?<li>車上</li>
?<li>車上</li>
?<li>車上</li>
</ol>
<ul>
?<!-- ul 無序列表 -->
?<li>我</li>
?<li>我</li>
?<li>他</li>
?<li>你</li>
</ul>
</table>
?
?
?
?
?
</body>
</html>