表单(FORM)标记(TAGS)(1)
*=GET, POST
*=text, passWord, checkbox, radio, image, hidden, submit, reset
**=Symbolic Name for CGI script
*=text, password
<form action=/cgi-bin/post-query method=POST> 您的姓名: <input type=text name=姓名><br> 您的主页的网址: <input type=text name=网址 value=http://><br> 密码: <input type=password name=密码><br> <input type=submit value="发送"><input type=reset value="重设"> </form>
<form action=/cgi-bin/post-query method=POST> <input type=text name=a01 size=40><br> <input type=text name=a02 maxlength=5><br> <input type=submit><input type=reset> </form>