HTML常用表格与标签
一、table表格标签:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<!--有大小为1的边框-->
<table border="1">
<!-- 行-->
<tr>
<!-- 列,纵向占两个格子-->
<td rowspan="2">年级</td>
<!-- 列,加粗且居中,横向占两个格子-->
<th colspan="2">姓名</th>
<th>性别</th>
</tr>
<tr>
<th>大一</th>
<th colspan="2">张三</th>
<th>男</th>
</tr>
</table>
</body>
</html>
效果图:
二、 form表单:
1)input元素:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form>
<!-- 输入框-->
<tr><input type="text"/></tr>
<!-- 密码框-->
<tr><input type="password"/></tr>
<!-- 单选框-->
<tr><input type="radio" name="sex"/>男 <input type="radio" name="sex"/>女</tr>
<!-- 复选框-->
<input type="checkbox" />健身<input type="checkbox" />跑步
<tr><input type="time"/></tr>
<tr><input type="date"/></tr>
</form>
</body>
</html>
效果图:
2)select 元素(下拉列表):
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form>
<!--下拉单选表单, selected="selected默认选的“练胸”-->
<select>
<option selected="selected">练胸</option>
<option>练腿</option>
<option>练胳膊</option>
</select>
<!--多选下拉列表,按住ctrl就可以多选-->
<select multiple="multiple">
<option >练胸</option>
<option>练腿</option>
<option>练胳膊</option>
</select>
<!--多行输入框-->
<textarea></textarea>
</form>
</body>
</html>
效果图: