网页基本信息
<title>标签
<meta> 标签
标题标签
<h1>....... <h6>
段落标签
<p>...</p>
换行标签
<br/>
水平线标签
<hr/>
字体样式标签
加粗 <strong> </strong>
斜体<em> </em>
注释和特殊符号
空格
大于号 >
小于号 <
引号 ";
版权符号 ©;
图像标签
<img>
列表对比
无序列表
以<ul>标签来实现 以<li>标示列表项
有序列表
以<ol>标签来实现 以<li>标示列表项
定义列表
以<dl>标签是实现
以<dt>标签定义列表项
以<dd>标签定义内容
表格的基本语法
<table>
<tr>
...............
</tr>
</table> 使用 width 和border 设置表格的宽度和边框
表单语法
<form method="post" action="result html">
<input type="..." name="....." value="......">
文本框 type=text 密码框 password 复选框 checkbox 列表框 select 多行文本框 textarea 文件域 file 只读 readonly 禁用 disabled
</form>