HTML标签字体超链接列表标签
<html>
<!-- 字体标签 -->
<font size="7" color="red" face="楷体">字体标签</font>
<!--无序列表-->
<ul type="circle">
<!--超链接-->
<li><a target="_blank" href="../案例一/info.html">传智播客</a></li>
<li><a href="http://www.baidu.com" target="_blank">百度</a></li>
</ul>
<!--有序列表-->
<ol type="I" start="">
<li><a href="../案例一/info.html" target="_blank">传智播客</a></li>
<li><a href="http://www.163.com" target="_blank">网易</a></li>
</ol>
</html>
表格标签
<table>
<tr>
<td colspan="" rowspan=""></td>
</tr>
</table>
图片标签
<img src="路径" width="" height=""/>
表单标签
<form>
<!--文本框-->
<input type="text" name="name" value="默认值">
<!--密码框-->
<input type="password" name="name" value="默认值" maxLength="最大长度">
<!--单选按钮-->
<input type="radio" name="name" value="实际提交值" checked="checked">
<!--复选按钮-->
<input type="checkbox" name="name" value="实际提交值" checked="checked">默认选中
<!--按钮-->
<input type="button" value="显示在按钮上的字">
<!--提交按钮-->
<input type="submit" value="显示在按钮上的字">
<!--重置按钮-->
<input type="reset" value="显示在按钮上的字">
<!--上传文件-->
<input type="file" name="name">文件上传
<!--图片-->
<input type="image" name="">
<!--隐藏-->
<input type="hidden">
<!--下拉列表-->
<select name="name">
<option value="提交到后台的值"></option>
</select>
<!--文本域-->
<textarea name="name" rows="几行" cols="几列"></textarea>
</form>
扩展表单标签
<input type="email">
<input type="date">
<input type="color">
<input type="number">
<form></form>常用属性:
表单元素
表单输入:input type=:
text文本框
password密码框
radio单选按钮
checkbox复选按钮
button普通按钮,没有任何功能的按钮
文本域*<textarea>
下拉列表
参数的传递:地址?name=值&age=值
超链接
<a href="要跳转的一个地址" target="打开方式:_self _blank"
框架标签
<html>
<head>
</head>
<frameset rows="15%,*">
<frame src="top.html" name="top"/>
<frameset cols="20%,*">
<frame src="left.html" name="left"/>
<frame src="right.html" name="right"/>
</frameset>
</frameset>
</html>
特殊字符的标签空格:
小于号:<
大于号:>