<form action=""method="post">创建表单的开头与结尾,</from>
<input type="text" value="" name="uname"/>文本框,前方可填写任何字,通常作为用户名,
<input type="password" value="" name="upwd"/>密码框,
<input type="submit" value=""/>提交按钮,(type="reset")是取消按钮,
<input type="radio" name="sex" value="男/女">单选框,一般都写男女,
<input type="checkbox" value="" name="lists[内容]"/>复选框,
<select name="age" size="" multiple=""></select>选项列表,
<option value=""></option>选项列表,添加在<select>标签外,
<frameset cols="列数兼列宽" rows="行数兼距离">创建方框,</frameset>
<frame name="" src=""/>在方框中加入图片,
<textarea>填写的框架,</textarea>
<input type="file" name="face">浏览框,上传头像一类的,
<label for="文本框的名称,"></label>写在输入框之上,点击名称光标可显示到输入框内,