HTML高级部分
2.1. 表格标签
2.1.1 <table></table>
Bgcolor 设置表格的背景色
Border 设置边框的宽度
Bordercolor 设置边框的颜色
Bordercolorlight 设置边框明亮部分的颜色
Bordercolordark 设置边框昏暗部分的颜色
Cellspacing 设置单元格之间的间隔大小
Cellpadding设置单元格与其内部内容之间的间隔大小
Width 设置表格的宽度
Htight 设置表格的高度
2.1.2 <tr></tr><td></td>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>无标题页</title>
</head>
<body>
<table border="1">
<tr>
<td>姓名</td>
<td>性别</td>
<td>年龄</td>
</tr>
<tr>
<td>王康</td>
<td>男</td>
<td>22</td>
</tr>
</table>
</body>
</html>
2.1.3 <th></th><caption></caption>
2.2. 帧标签
2.2.1 <frameset></frameset>
用来定义框架集中有几个帧。
2.2.2 <frame></frame>
定义具体一个帧的窗体
2.2.3 <noframes><noframes>
用来在那些不支持帧的浏览器中显示文本或图像信息。
2.2.4 <iframe><iframe>
用来在一个网页中间插入一个简单的帧窗体。
2.3. 表单标签
2.3.1. <form></form>
2.3.2. <input type=”submit”>
2.3.3. <input type=”reset”>
2.3.4. <input tyoe=”text”>
2.3.5. <input type=”checkbox”>
2.3.6. <input type=”radio”>
2.3.7. <input type=”hidden”>
2.3.8. <input type=”password”>
2.3.9. <input type=“button”>
2.3.10. <input type=”file>
2.3.11. <input type=”image”>
2.3.12. <select></select><option></option>
2.3.13. <textarea></textarea>
2.3.14. <label>标签
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>无标题页</title>
</head>
<body>
<label for="usr" accesskey="a">用户名(<u>a</u>):</label>
<input type="text" name="user" id="usr" /><br />
<label for="pas" accesskey="b">密码(<u>b</u>):</label>
<input type="password" name="pass" id="pas" /><br />
性别<input type="radio" name="sex" id="male" />
<label for="male" accesskey="c">男(<u>c</u>)</label>
<input type="radio" name="sex" id="female" />
<label for="female" accesskey="d">女(<u>d</u>)</label><br />
<label for="nar" accesskey="e">婚姻状况(<u>e</u>):</label>
<input type="checkbox" name="married" id="mar" />以婚
</body>
</html>
2.4. 头元素
2.4.1 <base>标签
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>无标题页</title>
</head>
<body>
<a href="HTMLPage.htm">第二页</a>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>无标题页</title>
<base href="http://localhost:1055/AtlasWebSite1/" />
</head>
<body style=" background-color:#ffffff">
<a href="HTMLPage.htm">第一页</a>
</body>
</html>
2.4.2 <link>标签
定义当前文档和另一个文档或资源的关系。
2.4.3 <meta>标签
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>无标题页</title>
<meta http-equiv="Page-Enter" content="revealTrans(Transition,Duration=1.000)" />
</head>
<body style=" background-color:Red">
</body>
</html>
2.5. 分区标签
2.5.1 <div></div>
2.5.2 <span></span>
2.6. 思考与实践