头部分:用来放置一些页面信息
    体部分:用来放置一些页面内容

 

<font size="1" color="red"> </font>

 

<b>:加粗

<i>:斜体

<strong>:加粗,带语义(加重语气)

<em>:斜体,带语义

 

<img src="" height="" width="" alt="">

./代表当前路径

../代表上一级路径

../../代表上上一级路径

 

友情链接:

列表标签:

  无序列表

  有序列表

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body>
		<!--无序列表 -->
		<ul type="square">
			<li>百度</li>
			<li>新浪微博</li>
			<li>中国农业大学</li>
		</ul>
		<hr/>
		<!--有序列表 -->
		<ol type="square">
			<li>百度</li>
			<li>新浪微博</li>
			<li>中国农业大学</li>
		</ol>
	</body>
</html>

 

 

 

10-05 12:05