<!--基础标签-->
<p></p>(段落标签)
<h1><h1>(标题标签):独成一段,加粗
<strong></strong>(加粗)
<em></em>(斜体)
<del></del>(中划线)
<div></div>
<span></span>
<!--高级标签-->
(空格)
<(<)
>(>)
<br>(换行)
<hr>(水平线)
<ol>(有序列表) type=""(排序)可填1,a/A,i/I reversed="reversed"(倒排)
<li></li>
<li></li>
</ol>
// list-style:none;CSS里
<ul>(无序列表) type="circle"
<li></li>
<li></li>
</ul>
<img src="">(图片链接) alt=""(文字简单叙述图片) title=""(图片提示符)
1.网上URL
2.本地的绝对路径
3.本地的相对路径 .../
<a href="" target="_blank">需要链接的东西</a>
target(页面打开方式:本身或新建)
//1.锚点链接
2.超链接
3.打电话<a href="tel136xxxxxxxx" ></a>
4.发邮件mailto:136xxxx@qq.com
5.协议限定符<a href="javascript:while(1){alert('CC')}">CC</a>
<form method="" action="">method=post/get
U:<input type="text" name="">
P:<input type="password" name="">
按钮<input type="submit" value="">
单选框<input type="radio" name="" vaule="">
复选框<input type="checkbox" name="" vaule="">
</form>