黑马程序员技术交流社区
标题:
...
[打印本页]
作者:
袁雅墨
时间:
2012-9-11 15:07
标题:
...
<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>
复制代码
作者:
许庭洲
时间:
2012-9-11 15:25
上面html打开后网页显示异常,正确显示如下:
修改后结果.JPG
(14.58 KB, 下载次数: 19)
下载附件
2012-9-11 15:23 上传
修改后的html代码如下:
<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="password1">密 码:</label></td><td><input type="password" id="password1" size="25" /></td></tr>
<tr><td><label for="password2">重复密码</label></td><td><input type="password" id="password2" size="25" /></td></tr>
<tr><td><label>省份:</label><td><select><option selected="selected">北京</option><option>深圳</option>& lt;option>上海</option></select></td></tr>
<tr><td><label>性别:</label><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><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><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>
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2