1. 程式人生 > >燕十八---HTML標籤學習

燕十八---HTML標籤學習

1, 標題,段落標籤

<h1>內容</h1>
<p>內容</p>

2, 圖片標籤

<img src="---" alt="--" title=" " />
注:alt用於供搜尋引擎瞭解圖片資訊

3, 無序列表和有序列表

<ul><li></li></ul>
<ol><li></li></ul>

4, 超連結

<a href="--" name=" "></a>
注:name在製作錨點時可以使用

5, CSS偽類(關於超連結)

在寫css時順序必須是:link->visited->hover->active

6, 字元實體

實體 字元 實體 字元
&nbsp ; 空格 &lt ; <
&gt ; > &times ; ×
&divide ; ÷ &amp ; &
&quot ; " &apos ; &apos
&yen ; ¥ &copy ; ©

7, 表單元素

<input type="text/radio/checkbox/submit/reset/password/file/hidden" name="--" value="--"  />
注:radio和checkbox預設選擇使用checked="checked"
<select name="--">
    <option value=" "></option>
    <option value=" " selected="selected"></option>
</select>
<textarea name="--"
>
</textarea> <form action="提交到的網址" method="資料傳送加密方式"></form>

8, 框架

<frameset rows/cols="--, --, ...">
    <frame src=" " name=" "></frame>
    <frame src=" "></frame>
</frameset>
注:點選某個框架中的連結,在另一個框中開啟連結到的網頁,連結的target使用此框的name值即可