表单
<form action="信息接收脚本地址" method="post">
<input type="text" /><!--文本域-->
size="文本框长度" maxlenght="最大字符长度"
<input type="password" /><!--密码域-->
<input type="radio" /><!--单选框-->
<input type="checkbox" /><!--复选框-->
checked="checked"(默认选中) multiple="一次选中个数(默认一)"
<select><!--下拉框开始-->
size="一次展示的个数"
<option></option><!--元素-->
</select><!--下拉框结束-->
<textarea></textarea><!--多行文本-->
rows="行数" cols="列数"
<input type="file" /><!--文件域-->
<input type="submit" /><!--提交按钮-->
<input type="reset" /><!--重置按钮-->
<input type="button" /><!--空按钮-->
</form>
name="" value=""
<label for="id"></label><!--移动光标-->
disabled="disabled"(禁止修改)
滚动
<marquee></marquee><!--滚动-->
behavior滚动方式 ="slide只滚一次 ;scroll重复 ;alternate来回 "
direction方向 ="down下 ;up上 ;right左 ;left右 "
loop ="滚动次数" width="宽" height="高" bgcolor="背景色" scrollamount="滚动步长(像素)" scrolldelay="滚动时间间隔(毫秒)"
onmouseover="this.stop()"鼠标进过上面停止滚动 onmouseout="this.start()"鼠标离开时开始滚动
帧窗口(html框架)
<frameset></frameset><!--帧窗口(html框架),可嵌套,与<body></body>不共存-->
cols="列数" rows="行数" frameborder边框="0无 ;1有 " bordercolor="边框颜色" *表示余下的
<frame></frame><!--窗口实体,在<frameset></frameset>中-->
src="地址" name="框架名称" scrolling是否出现滚动条="yes是 ;no否 ;auto " noresize边框是否可以拖动=""
<iframe src="地址"></iframe><!--引入页面与<body></body>共存-->