NCD HTML Design Guide v6.0
<form action=/cgi-bin/post-query method=POST> Your Name: <input type=text name=name><br> Your Home Page: <input type=text name=home value=http://><br> Password: <input type=password name=name><br> <input type=submit><input type=reset> </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>
<form action=/cgi-bin/post-query method=POST> <input type=checkbox name=f01> Banana <input type=checkbox name=f02 checked> Apple <input type=checkbox name=f03 value=Orange> Orange <br><br> <input type=submit><input type=reset> </form>
<form action=/cgi-bin/post-query method=POST> <input type=radio name=fruits> Banana <input type=radio name=fruits checked> Apple <input type=radio name=fruits value=Orange> Orange <br><br> <input type=submit><input type=reset> </form>
<form action=/cgi-bin/post-query method=POST> <input type=image name=face src=f.gif><br><br> <input type=radio name=zoom value=2 checked>x2 <input type=radio name=zoom value=4>x4 <input type=radio name=zoom value=6>x6<br><br> <input type=reset> </form>
<form action=/cgi-bin/post-query method=POST> <input type=hidden name=add value=hoge@hoge.jp> Here is a hidden element. <br><br> <input type=submit><input type=reset> </form>
<form action="url to script" enctype="multipart/form-data" method=POST> <input type=file name=upload> <BR><BR> </form>
<form> <input type=button value="Open a new window!" onClick="window.open('samp/050window.htm')"> </form>
<form action=/cgi-bin/post-query method=POST> <select name=fruits> <option>Banana <option selected>Apple <option value=My_Favorite>Orange </select><br><br> <input type=submit><input type=reset> </form>
<form action=/cgi-bin/post-query method=POST> <select name=fruits size=3> <option>Banana <option selected>Apple <option value=My_Favorite>Orange <option>Peach </select><br><br> <input type=submit><input type=reset> </form>
<form action=/cgi-bin/post-query method=POST> <select name=fruits size=3 multiple> <option selected>Banana <option selected>Apple <option value=My_Favorite>Orange <option selected>Peach </select><br><br> <input type=submit><input type=reset> </form>
<form action=/cgi-bin/post-query method=POST> <textarea name=comment rows=5 cols=30> </textarea> <br><br> <input type=submit><input type=reset> </form>
<form action=/cgi-bin/post-query method=POST> <textarea wrap=soft name=comment rows=5 cols=25> </textarea><br><br> <input type=submit><input type=reset> </form>
<form action=/cgi-bin/post-query method=POST> <textarea wrap=hard name=comment rows=5 cols=25> </textarea><br><br> <input type=submit><input type=reset> </form>
<isindex prompt="Enter Search Keyword: ">
<form action=/cgi-bin/post-query method=POST> Your Name: <input type=text name=name><BR><BR> <button type="submit"><IMG SRC="f.gif"><BR>SUBMIT</button> <button type="reset"><IMG SRC="f.gif"><BR>RESET</button> </form>
<form action=/cgi-bin/post-query method=POST> <fieldset> <legend>Personal Data</legend> Your Name: <input type=text name=name><br> E-Mail: <input type=text name=e-mail> </fieldset> <fieldset> <legend align=center>Payment Info</legend> Credit Card:<input type=radio name=card>VISA <input type=radio name=card>MASTER<br> Expiration: <input type=text name=exp> </fieldset> <br> <input type=submit><input type=reset> </form>
<label for="inputdata"> Please tell me your E-Mail Address! </label> <form action=/cgi-bin/post-query method=POST> <input type=text name=e-mail id="inputdata"> <input type=submit><input type=reset> </form><-- Click this text, reach inputbox faster.
<form action=/cgi-bin/post-query method=POST> First Name: <input type=text tabindex="1"><br> Last Name: <input type=text tabindex="3"><br> Comment: <input type=text tabindex="2"><br> <input type=submit tabindex="4"><input type=reset> </form>
<form action=/cgi-bin/post-query method=POST> First Name: <input type=text><br> Last Name: <input type=text disabled="true"><br> </form>