- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title></title>
- </head>
- <body>
- <table>
- <tr><th colspan="2">注册页面</th></tr>
- <tr><td><label for="name">用户名:</label></td><td><input type="text" id="name" size="25"/></td></tr>
- <tr><td><label for="password">密 码:</label></td><td><input type="password" id="password" size="25" /></td></tr>
- <tr><td><label for="password1">重复密码</label></td><td><input type="password" id="password1" size="25" /></td></tr>
- <tr><td><label>省份:</label></td><td><select><option selected="selected">北京</option><option>深圳</option><option>上海</option></select></td></tr>
- <tr><td><label>性别:</label></td><td><label for="1">男</label> <input type="radio" name="sex" id="1" checked="checked"/> <label for="2">女</label> <input type="radio" name="sex" id="2"/> <label for="3">保密</label><input type="radio" name="sex" id="3" /></td></tr>
- <tr><td><label>职业:</label></td><td><label for="stu">学生</label><input type="radio" name="vocation" checked="checked" id="stu" /><label for="comp">公司职员</label><input type="radio" name="vocation" id="comp" /><label for="qita">其它</label><input type="radio" name="vocation" id="qita" /></td></tr>
- <tr><td><label>爱好:</label></td><td><label for="san">登山</label><input type="checkbox" checked="checked" id="san"/><label for="lqiu">篮球</label><input type="checkbox" id="lqiu" /><label for="zqiu">足球</label><input type="checkbox" id="zqiu" /></td></tr>
- </table>
- </body>
- </html>
复制代码 |
|