<html> <head> <title>表單的學習</title> </head> <body> <h1 align="left">用戶註冊信息<h1> <table border=1> <tr> <td align="right">用戶名</td> <td cellpadding=0"> <form> <input type="text" value="admire"> </form> </td> </tr> <tr> <td align="right">密碼</td> <td> <form> <input type="password"> </form> </td> </tr> <tr> <td align="right">確認密碼</td> <td> <form> <input type="password"> </form> </td> </tr> <tr> <td align="right">性別:</td> <td> <form> <input type="radio" name="性別" value="男" checked="checked">男 <input type="radio" name="性別" value="女" checked="checked">女 <input type="radio" name="性別" value="保密" checked="checked">保密 </form> </td> </tr> <tr> <td align="right">愛好:</td> <td> <form> <input type="checkbox" name="愛好:" value="運動" checked="checked">運動 <input type="checkbox" name="愛好:" value="睡覺" checked="checked">睡覺 <input type="checkbox" name="愛好" value="唱歌" checked="checked">唱歌 </form> </td> </tr> <tr> <td align="right">頭像:</td> <td> <form> <input type="file" name="image"> </form> </td> </tr> <tr> <td align="right">學歷:</td> <td> <form> <select name="學歷" size=1 multiple="multiple"> <option value="大專" selected="selected">大專</option> <option value="本科" selected="selected">本科</option> <option value="研究生" selected="selected">研究生</option> </select> </form> </td> </tr> <tr> <td align="right">我的簡介:</td> <td> <form> <textarea name="introduce" cols=30 rows=6>這是你的我的簡歷</textarea> </form> </td> </tr> <tr align="center"> <td> </td> <td> <form> <input type="reset" name="reset" value="重填"/> <input type="submit" name="sbt" value="提交"/> <input type="button" name="cc" value="取消"/> </form> </td> </tr> </table> </body> </html>