HTML 介紹

HTML:HyperText Markup Language,是一個用來建構網頁結構的一種標籤語法,以下是各版本的發佈年份。

年份 版本
1993 HTML
1995 HTML 2.0
1997 HTML 3.2
1997 HTML 4
1999 HTML 4.01
2000 XHTML
2014 HTML 5

撰寫HTML文件時,第一行可以宣告本文件所採用的版本,例如:

HTML 5

<!DOCTYPE html>

XHTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

HTML 4.01

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

其中XHTML強制每個標籤都要有結束,如果沒有外部封閉標籤的,需使用內部封閉的方式,例如:

外部封閉:<p>內容1</p><p>內容2</p>

內部封閉:內容1<br />內容2

目前大部分的瀏覽器都支援HTML5,但若要IE8以前的瀏覽器支援,請加入下面的語法:

<!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

想要測試自己的瀏覽器是不是完全支援所有的HTML5標籤,可以到這個網站來測試看看,以下是為大家整理的HTML標籤:

基礎結構類標籤
標籤 說明 備註
<html></html> 建構整份網頁文件
<head></head> 網頁描述資料
<body></body> 網頁內容

基礎描述類標籤
標籤 說明 備註
<title></title> 網頁標題
<base> 連結參考 針對相對路徑的參考位置
<meta> 頁面描述資料 關鍵字、描述…等
<style></style> CSS樣式 直接在網頁文件中撰寫CSS樣式
<script></script> Javascript語法 直接在網頁文件中撰寫Javascript樣式
<noscript></noscript> 不支援語法時顯示訊息
<link> 連結外部檔案 例如:CSS樣式表、網頁圖示檔…等

內容結構類標籤
標籤 說明 備註
<h1></h1>~<h6></h6> 標題 數字越小權重越高
<p></p> 段落
<br> 跳行
<wbr> 文字過長則斷行 HTML 5新增
<hr> 水平線
<table></table> 表格
<th></th> 標題欄位
<tr></tr>
<td></td>
<caption></caption> 表格標題
<colgroup></colgroup> 欄群組
<col> 欄群組屬性設定
<thead></thead> 表格標題群組
<tbody></tbody> 表格內容群組
<tfoot></tfoot> 表格頁尾群組
<ul></ul> 定義無順序清單
<ol></ol> 定義有順序清單
<li></li> 清單項目
<dl></dl> 定義描述清單
<dt></dt> 描述項目
<dd></dd> 項目說明
<div></div> 定義區塊型的區域
<span></span> 定義單行型的區域
<header></header> 定義網頁標題區域 HTML 5新增
<nav></nav> 定義網頁導覽區域 HTML 5新增
<main></main> 定義網頁主內容區塊 HTML 5新增
<section></section> 定義網頁章節區域 HTML 5新增
<article></article> 定義網頁內容區域 HTML 5新增
<aside></aside> 定義網頁邊欄區域 HTML 5新增
<footer></footer> 定義網頁頁尾區域 HTML 5新增
<details></details> 定義詳細訊息 HTML 5新增
<summary></summary> 定義詳細訊息總結 HTML 5新增
<iframe></iframe> 內嵌頁框
<menuitem></menuitem> 彈出式選單內容 HTML 5新增(僅Firefox支援)

內容描述類標籤
標籤 說明 備註
<b></b> 粗體字
<strong></strong> 粗體字 除了文字樣式上變粗之外,語意上也有加強的意思
<i></i> 斜體字
<em></em> 斜體字 除了文字樣式上變斜之外,語意上也有強調的意思
<small></small> 較小的字
<mark></mark> 突顯的字  HTML 5新增
<del></del> 刪除的字
<ins></ins> 加入的字
<sub></sub> 下標字
<sup></sup> 上標字
<q></q> 引用 用於較短的文字引用
<blockquote></blockquote> 引用 用於較長的文字引用,利用cite屬性說明出處
<abbr></abbr> 縮寫字說明 利用title屬性說明縮寫字
<address></address> 聯絡資訊
<cite></cite> 作品標題
<bdo></bdo> 文字方向 利用dir屬性決定方向(ltr:由左向右、rtl:由右向左)
<dfn></dfn> 術語
<kbd></kbd> 鍵盤輸入 表達需要使用者用鍵盤按下某按鍵
<samp></samp> 電腦回饋內容
<code></code> 程式碼
<pre></pre> 預先格式化 內容會按照在HTML中的排版來顯示
<var></var> 變數
<ruby></ruby> 文字音標 HTML 5新增
<rt></rt> 文字音標內容 HTML 5新增
<rp></rp> 不支援文字音標時顯示 HTML 5新增
<time></time> 定義日期時間 HTML 5新增
<bdo></bdo> 反向文字 HTML 5新增
<bdo></bdo> 對話框 HTML 5新增
<figure></figure> 圖片說明 HTML 5新增
<figcaption></figcaption> 圖片說明內容 HTML 5新增

連結類標籤
標籤 說明 備註
<a></a> 超連結

圖形類標籤
標籤 說明 備註
<img> 圖片
<map></map> 影像連結地圖
<area></area> 影像連結區域
<svg></svg> 網頁向量圖檔 HTML 5新增

表單類標籤
標籤 說明 備註
<form></form> 表單範圍
<input> 表單輸入項目
<fieldset></fieldset> 表單欄位群組
<legend></legend> 表單欄位群組名稱
<select></select> 表單選單
<optgroup></optgroup> 表單選單選項群組
<option></option> 表單選單選項
<textarea></textarea> 表單文字區域
<button></button> 表單按鈕
<datalist></datalist> 表單資料清單
<keygen> 表單金鑰產生欄位 HTML 5新增
<output></output> 表單計算結果欄位
<meter></meter> 量度圖形 HTML 5新增
<progress></progress> 進度圖形 HTML 5新增

多媒體類標籤
標籤 說明 備註
<canvas></canvas> 畫布區域 HTML 5新增
<audio></audio> 聲音內容 HTML 5新增
<video></video> 視訊內容 HTML 5新增
<source> 內容來源 HTML 5新增
<track> 內容字幕指定 HTML 5新增
<embed> 外部程式內容嵌入 HTML 5新增
<object></object> 外部程式內容嵌入 HTML 5新增

28,405 Responses

  1. Эффективные способы избежать повторения номеров Узнаем почему возникают дублированные номера Как грамотно нумеровать документы Зачем нужно следить за уникальностью номеров Проблема дублирующихся номеров и их решение Профессиональное руководство по нумерации без ошибок дубликат гос номера http://www.dublikat-znak-automobile.ru .

  2. Timothytef表示:

    sweet bonanza yasal site slot oyunlari or sweet bonanza yorumlar http://nimbus.c9w.net/wifi_dest.html?dest_url=https://sweetbonanza.network sweet bonanza oyna sweet bonanza demo turkce sweet bonanza oyna and sweet bonanza sweet bonanza nas?l oynan?r

  3. KevinSounc表示:

    http://denemebonusuverensiteler.win/# deneme bonusu veren siteler

  4. Darrelherse表示:

    yeni slot siteleri: canl? slot siteleri – slot siteleri 2024

  5. The NYSE and NASDAQ are the two largest stock exchanges in the world.

  6. Leonardanire表示:

    deneme bonusu veren siteler: bonus veren siteler – deneme bonusu http://slotsiteleri.bid/# bonus veren casino slot siteleri

  7. Leonardanire表示:

    deneme bonusu veren siteler: casino slot siteleri – deneme bonusu veren siteler http://slotsiteleri.bid/# yeni slot siteleri

  8. HighStakesDB表示:

    Visit my web blog :: HighStakesDB

  9. Эффективные способы избежать повторения номеров Узнаем почему возникают дублированные номера Как проверить номера на уникальность Советы по корректной нумерации документов Уникальные методы борьбы с дубликатами номеров Лучшие практики по избеганию повторений в номерах дубликат номера автомобиля https://www.dublikat-znak-automobile.ru/ .

  10. Risk Management is a recurrent activity that deals with the analysis, planning, implementation, control, and monitoring of implemented measurements and the enforced security policy.

  11. After logging in, a user cannot use their web browser “back” button during their session, since that can log them out.

  12. This format is more efficient than MPEG-2 and is better suited for complex, fast-moving images like those in sporting events and action movies.

  13. Как не попасть в ситуацию с дубликатами номеров Что делать если встретились дубликаты номеров Исключаем дубликаты номеров в отчетах Зачем нужно следить за уникальностью номеров Уникальные методы борьбы с дубликатами номеров Профессиональное руководство по нумерации без ошибок изготовить номера на автомобиль цена москва http://www.dublikat-znak-automobile.ru/ .

  14. Apple Maps features a Flyover mode that allows a person to discover sure densely populated urban centers and different locations of curiosity in a 3D panorama composed of fashions of buildings and structures, as well as Look Around, which permits the user to view 360° avenue-level imagery.

  15. Robertleare表示:

    Initial Coin Offers ICOsForex License Offer in Seychelles: 005Representation of the company at the Registration Centre SODRA Tax Inspectorate in relations with creditorsState Social InsuranceEither a registration act for a single founder or a memorandum of association for several founders Online gambling.Different rates for different types of social security the total contribution of the employer and employee can be about 12-15 of the salaryThe transfer of electronic securities will generally continue to be governed by the provisions of the German Civil Code. The crypto securities register should facilitate the creation of secure decentralised databases that are also designed to record securities transactions. Moreover the lawmakers adopted an option to facilitate the introduction of crypto funds by this regulation which are defined as unit certificates issued through a crypto securities register. Such a regulation would be issued by the Federal Ministry of Justice and Consumer Protection and the Federal Ministry of Finance.Application processing timeWho is the forex regulator in Labuan?Labuan known for its status as an international offshore financial centre in Malaysia offers a unique regulatory environment for forex brokers and other financial institutions. Regulation of the forex market in Labuan is carried out by the Labuan Financial Services Authority LFSA which was established in 1996 to promote and develop Labuan as an international financial centre. This article examines the LFSAs role as a forex regulator its key functions and responsibilities in the context of the management of financial transactions in Labuan.

  16. There was no button or crank to roll down the window because all the windows were fixed in place.

  17. Regular homeowner insurance policies typically exclude protection for flooding, because the NFIP underwrites most flood insurance policies in the US.

  18. Larrydut表示:

    slot siteleri deneme veren slot siteleri or canl? slot siteleri https://maps.google.fm/url?sa=t&url=https://slotsiteleri.bid oyun siteleri slot deneme bonusu veren siteler bonus veren slot siteleri and yeni slot siteleri slot siteleri bonus veren

  19. ShannonPut表示:

    deneme bonusu bonus veren siteler or deneme bonusu http://www.slope60.com/mb/index.cgi?id=1&mode=redirect&no=1495&ref_eid=841&url=http://denemebonusuverensiteler.win deneme bonusu veren siteler bahis siteleri bahis siteleri and deneme bonusu bonus veren siteler

  20. One thing I want to say is before obtaining more laptop or computer memory, look at the machine into which it could be installed. In the event the machine is usually running Windows XP, for instance, the actual memory ceiling is 3.25GB. Applying above this would just constitute a waste. Make sure one’s mother board can handle this upgrade amount, as well. Good blog post.

  21. PercyToums表示:

    slot kumar siteleri: oyun siteleri slot – en yeni slot siteleri http://sweetbonanza.network/# sweet bonanza hilesi slot kumar siteleri slot siteleri bonus veren en yeni slot siteleri

  22. Keithexeld表示:

    The ghost town that has stood empty for more than a century порно групповое жесток There’s a large and very dignified school in Kayakoy. There are narrow streets lined with houses that wend and rise up both sides of a steep valley. There’s an ancient fountain in the middle of the town. And there are churches one with million-dollar hilltop views over the blue Aegean. But for most of the past 100 years there have been no people. Kayakoy in southwestern Turkey’s Mugla Province is a true ghost town. Abandoned by its occupants and haunted by the past. It’s a monument frozen in time – a physical reminder of darker times in Turkey. With hillsides dotted by countless crumbling buildings slowly being swallowed by greenery and endless views into vanished lives it’s also a fascinating and starkly beautiful place to visit. In summer under clear skies and blazing suns it’s eerie enough. Even more so in cooler seasons wreathed in mountain or sea mists. Just over a century ago Kayakoy or Levissi as it was known was a bustling town of at least 10000 Greek Orthodox Christians many of whom were craftspeople who lived peacefully alongside the region’s Muslim Turkish farmers. But in the upheaval surrounding Turkey’s emergence as an independent republic their simple lives were torn apart. Tensions with neighboring Greece after the Greco-Turk war ended in 1922 led to both countries ejecting people with ties to the other. For Kayakoy that meant a forced population exchange with Muslim Turks living in Kavala in what is now the Greek region of Macedonia and Thrace. But the newly arrived Muslims were reputedly less than happy with their new home swiftly moving on and leaving Kayakoy to fall to ruin.

  23. Larrydut表示:

    yasal slot siteleri deneme veren slot siteleri or deneme bonusu veren siteler http://applause222.co.jp/shop/display_cart?return_url=https://slotsiteleri.bid/ yasal slot siteleri en yeni slot siteleri slot oyunlar? siteleri and en iyi slot siteleri 2024 en iyi slot siteleri 2024

  24. AnedPaish表示:

    If a Chiari malformation occurs with other congenital present at birth defects, the diagnosis may be made at birth.
    yourself familiar with requirements for pharmacies that sell doxycycline and sun prices and regular pharmacy prices?
    Summer is a time for fun, for adventure, long walks on the beach, sundresses, shorts, campfires, concerts and patio parties.

  25. ShannonPut表示:

    deneme bonusu veren siteler bonus veren siteler or bonus veren siteler https://www.google.com.kw/url?q=https://denemebonusuverensiteler.win bahis siteleri deneme bonusu veren siteler deneme bonusu veren siteler and bahis siteleri deneme bonusu

  26. PercyToums表示:

    sweet bonanza 90 tl: pragmatic play sweet bonanza – sweet bonanza demo turkce https://denemebonusuverensiteler.win/# bonus veren siteler slot siteleri guvenilir bonus veren slot siteleri slot siteleri

  27. JesusLealt表示:

    yeni slot siteleri: canl? slot siteleri – casino slot siteleri

  28. ShannonPut表示:

    bonus veren siteler deneme bonusu or deneme bonusu https://maps.google.ws/url?q=https://denemebonusuverensiteler.win deneme bonusu veren siteler bahis siteleri bahis siteleri and bonus veren siteler bonus veren siteler

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。