详细学习链接
<!DOCTYPE html>
<html>
<title>second html</title>
<body>
<a href="http://www.w3school.com.cn/html/html_links.asp" target="_blank">W3 SCHOOL</a>
<a name='label'>定位锚点</a>
<a href="#label">跳转到锚点</a>
<img src="这是一个不存在的链接用于测试alt属性的效果" alt="a image about a cute cat">
<a href="http://www.w3school.com.cn/html/html_links.asp">
<img src="http://www.w3school.com.cn/i/eg_buttonnext.gif">
</a>
<table border="1">
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
</tr>
<tr>
<td>1,1</td>
<td> </td>
<td>1,3</td>
</tr>
<tr>
<td>2,1</td>
<td>2,2</td>
<td> </td>
</tr>
</table>
<ul>
<li>无序列表</li>
<li>无序列表</li>
</ul>
<ol>
<li>有序列表</li>
<li>有序列表</li>
</ol>
</body>
</html>