網(wǎng)頁(yè)基本信息
<title>標(biāo)簽
<meta> 標(biāo)簽
標(biāo)題標(biāo)簽
<h1>....... <h6>
段落標(biāo)簽
<p>...</p>
換行標(biāo)簽
<br/>
水平線標(biāo)簽
<hr/>
字體樣式標(biāo)簽
加粗 <strong> </strong>
斜體<em> </em>
注釋和特殊符號(hào)
空格
大于號(hào) >
小于號(hào) <
引號(hào) ";
版權(quán)符號(hào) ©;
圖像標(biāo)簽
<img>
列表對(duì)比
無序列表
以<ul>標(biāo)簽來實(shí)現(xiàn) 以<li>標(biāo)示列表項(xiàng)
有序列表
以<ol>標(biāo)簽來實(shí)現(xiàn) 以<li>標(biāo)示列表項(xiàng)
定義列表
以<dl>標(biāo)簽是實(shí)現(xiàn)
以<dt>標(biāo)簽定義列表項(xiàng)
以<dd>標(biāo)簽定義內(nèi)容
表格的基本語法
<table>
<tr>
...............
</tr>
</table> 使用 width 和border 設(shè)置表格的寬度和邊框
表單語法
<form method="post" action="result html">
<input type="..." name="....." value="......">
文本框 type=text ?密碼框 password 復(fù)選框 checkbox 列表框 select 多行文本框 textarea 文件域 ?file 只讀 readonly ?禁用 disabled
</form>