标签:
1、html(超文本标记语言)结构:
<html>
<head>
<title>标题</title>
</head>
<body>
主体
</body>
</html>
2、换行:<br/>
3、段落:<p></p>
4、标题:<hn></hn>
5、列表:
有序列表:
<ol>
<li></li>
</ol>
无序列表:
<ul>
<li></li>
</ul>
6、表格:
<table>
<tr>
<td></td>
</tr>
</table>
7、图片<src="图片路径" >
8、绝对路径&相对路径
标签:
原文地址:http://www.cnblogs.com/59muyu/p/4628547.html