form表单标签
action 要跳转的页面
reset 重置表单
<input type="submit">
submit 提交表单
a超链接标签
锚链接 跳转顶部 <a name="top"><a href= "#top">
网址链接 <a href="http://www.mi.com" title="小米小米" >小米官网</a>
打开链接的方式
_blank 新页面打开
_self 本页面打开 默认
input标签
type
text 文本框
password 密码框
radio 单选框
checkbox 多选框
reset 重置表单
submit 提交表单
hidden 隐藏框
buttom 按钮
file 文件
不分组的type有
text,password,button,file,email
需要(按name)分组的
type radio, checkbox
下拉框select
<select name="颜色"><br> <!--selected="selected" 设置默认选中--><br> <option value="1">红色</option> <br> <option value="1" selected="selected">黄色</option><br> </select>
可换行文本框
<textarea name="textaera" id="" cols="30" rows="10">文本框</textarea>
多行文本域
下拉列表
其他标签
h1~h8标题标签 p段落标签 strong粗体 em斜体
img图片标签
<img src="resources/image/1.jpg">
alt=&quot;图片加载不出来时的文字&quot;
title=&quot;悬停文字&quot;