⽤html语⾔写⼀个个⼈信息表(练习使⽤html标签)
<html>
<head>
<title>个⼈信息</title>
<meta charset="utf-8">
</head>
<body>
<form>
<table border="1px" align="center"width="60%" height="70%"
background="static.blog.csdn/skin/ink/images/head_bg.jpg">
<caption><h1>个⼈信息</h1></caption>
<tr><!--第1⾏开始-->
<th>姓名</th>
<th>
<input type="text" value="唐伯虎" />
</th>
<th>相⽚</th>
<th>
<input type="file" value="上传吧"/>
</th>
</tr><!--第1⾏结束-->
<tr><!--第2⾏开始-->
<th>性别</th>
<th>
<input type="radio" name="xingbie"  />男<!-- 单选按钮的name要⼀样 -->
<input type="radio" name="xingbie"  checked/>⼥<!-- selected 和它的区别是什么?都是选择 -->
</th>
<th>爱好</th>
<th>
<input type="checkbox" name="1"  />吃饭<!-- input可以⽤单标签的形式 -->
<input type="checkbox" name="1"  />睡觉
<input type="checkbox" name="1"  />上⽹<br/>
<input type="checkbox" name="1"  />听歌
<input type="checkbox" name="1"  checked/>泡妞
<input type="checkbox" name="1"  />洗澡
</th>
</tr><!--第2⾏结束-->
<tr><!--第3⾏开始-->
<th>地址</th>
<th colspan="3">
<select name="dizhi" size="1">
<option  >江西省</option>
<option  >福建省</option>
<option  >北京市</option>
</select>
<select name="dizhi" size="1">
<option  >九江市</option>
<option  >晋江市</option>
<option  >北京市</option>
</select>
<select name="dizhi" size="1">
<option  >都昌县</option>
<option  >英林镇</option>
<option  >北京市</option>
</select>
</th>
</tr><!--第3⾏结束-->
<tr><!--第4⾏开始-->
<th>⾃我描述</th>
<th colspan="3">
<textarea name="名字" rows="6" cols="90" >你真他妈的帅呆了</textarea><!--这⾥不能⽤单标签-->            </th>
</tr><!--第4⾏结束-->
<tr><!--第5⾏开始-->
<th>密码</th>htmlradio多选怎么用
<th colspan="3">
<input type="password" size="80" maxlength="15"/>
</th>
</tr><!--第5⾏结束-->
<tr><!--第6⾏开始-->
<th colspan="2">
<input type="reset" /><!--需要⽤form来包含,否则没有⽤-->
</th>
<th colspan="2">
<input type="submit" />
</th>
</tr><!--第6⾏结束-->
</table>
</form>
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。