Correction status:qualified
Teacher's comments:
实例 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>注册信息用表格制作</title> </head> <body> <table align="center" bgcolor="lightgreen" > <caption><h2>用户注册</h2></caption> <tr> <td colspan="2"><hr></td> </tr> <form> <tr> <td><label for="mail">邮箱:</label></td> <td><input type="text" name="mail" id="mail" placeholder="填写邮箱"></td> </tr> <tr> <td><label for="mima">密码:</label></td> <td><input type="password" name="mima" id="mima" placeholder="数字,字母不少于8个"></td> </tr> <tr> <td>性别:</td> <td><input type="radio" name="sex" value="man">男 <input type="radio" name="sex" value="women" checked="">女 <input type="radio" name="sex" value="baomi">保密</td> </tr> <tr> <td>兴趣:</td> <td><input type="checkbox" name="hobby[]" value="吃饭">吃饭 <input type="checkbox" name="hobby[]" value="睡觉" checked="">睡觉 <input type="checkbox" name="hobby[]" value="打麻将">打麻将</td> </tr> <tr> <td><label for="xuanze">级别:</label></td> <td><select id="xuanze"> <option>一级</option> <option>二级</option> <option selected="">三级</option> </select></td> </tr> <tr> <td>照片:</td> <td><img src="../images/316-1.png" height="20"><input type="file" name="照片"></td> </tr> <tr> <td><label for="beizhu">备注:</label></td> <td><textarea cols="30" rows="5" id="beizhu" placeholder="详细个人信息与资料"></textarea></td> </tr> <tr> <td colspan="2"><hr></td> </tr> <tr align="center"> <td colspan="2"><input type="submit" name="submit"> <input type="reset" name="reset"></td> </tr> </form> </table> </body> </html> 运行实例 » 点击 "运行实例" 按钮查看在线实例