html注册页面


<!DOCTYPE html>

<html> <head> <meta charset="utf-8" /> <title>一个简单的注册表单</title> </head> <body> <table border="6"> <tr> <th>会员注册</th> </tr> <tr> <th> 用户名: </th> <th><input type="text" name="name" id="name" /></th> </tr> <tr> <th> 密码: </th> <th> <input type="password" name="password" id="password" /> </th> </tr> <tr> <th>确认密码:</th> <th><input type="password" name="password_check" id="password_check" /></th> </tr> <tr> <th>性别:</th> <th><input type="radio" name="gender" value="male" id="gender_0" />男 <input type="radio" name="gender" value="famale" id="gender_1" />女</th> </tr> <tr> <th>爱好:</th> <th><input type="checkbox" name="hobby" value="001" id="hobby_0" />体育 <input type="checkbox" name="hobby" value="002" id="hobby_1" />音乐 <input type="checkbox" name="hobby" value="003" id="hobby_2" />文学 <input type="checkbox" name="hobby" value="004" id="hobby_3" />其他 </th> </tr> <tr> <th>城市:</th> <th> <select name="city" id="city"> <option value="01">北京</option> <option value="02">上海</option> <option value="03">广州</option> <option vlaue="04">深圳</option> </select> </th> </tr> <tr> <th>照片:</th> <th><input type="file" name="phone" id="phone" /></th> </tr> <tr> <th>备注:</th> <th></th> </tr> <tr> <th></th> <th><input type="submit" name="submit" id="button1" value="提交" /> <input type="reset" name="reset" id="button2" value="重置" /> </th> </tr> </table> </body> </html>html注册页面