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新增

45,748 Responses

  1. Bookmarks表示:

    It’s actually a great and helpful piece of info. I am glad that you
    simply shared this helpful information with
    us. Please stay us up to date like this. Thanks for sharing.

    Feel free to visit my website: Bookmarks

  2. Thank you for helping out, great info.

    My web-site :: Education exchange

  3. I drop a comment each time I especially enjoy a post on a site or I have something to add to the
    discussion. It’s caused by the fire communicated in the article I looked
    at. And after this post HTML 介紹 – 馬老師 雲端研究室.
    I was actually moved enough to write a leave a
    responsea response 🙂 I actually do have 2 questions for you if you don’t mind.
    Could it be simply me or do some of these responses come
    across like left by brain dead individuals? 😛 And, if
    you are writing on other places, I’d like to follow everything new you have to post.

    Would you list the complete urls of all your communal sites like
    your twitter feed, Facebook page or linkedin profile?

    Feel free to visit my website – family childcare

  4. Hi, i read your blog occasionally and i own a similar one
    and i was just curious if you get a lot of spam feedback?
    If so how do you stop it, any plugin or anything you can recommend?
    I get so much lately it’s driving me mad so any help is very much appreciated.

    Here is my homepage child care center testimonials

  5. baby cribs表示:

    Hey would you mind letting me know which webhost you’re working with?
    I’ve loaded your blog in 3 completely different internet
    browsers and I must say this blog loads a lot faster then most.
    Can you recommend a good hosting provider at a honest price?
    Kudos, I appreciate it!

    my blog post; baby cribs

  6. I leave a response when I appreciate a post on a website or
    I have something to contribute to the discussion. Usually it’s triggered by the fire displayed in the post I looked at.

    And after this post HTML 介紹 – 馬老師 雲端研究室.

    I was excited enough to drop a leave a responsea response :
    -) I actually do have a couple of questions for
    you if you tend not to mind. Could it be simply me or does
    it look like a few of these comments appear as if they are written by brain dead people?
    😛 And, if you are posting at other sites, I would like
    to follow everything new you have to post. Could you make a list every one of
    your community sites like your linkedin profile,
    Facebook page or twitter feed?

    Look at my blog post … choosing day care

  7. Hiya, I’m really glad I’ve found this info. Nowadays bloggers
    publish only about gossips and web and this is actually annoying.
    A good blog with interesting content, this is what I need.
    Thank you for keeping this site, I will be visiting it.
    Do you do newsletters? Can’t find it.

    Here is my web blog … child care worker

  8. right child表示:

    It’s actually a nice and helpful piece of
    info. I’m glad that you just shared this useful info with us.
    Please keep us informed like this. Thank you for sharing.

    Here is my web page :: right child

  9. home school表示:

    Wow! Finally I got a weblog from where I be capable of truly get useful data concerning my study and knowledge.

    Feel free to visit my web blog: home school

  10. day cares表示:

    Wow! This can be one particular of the most beneficial blogs We’ve ever arrive across on this subject.
    Basically Excellent. I’m also a specialist in this topic therefore I can understand your effort.

    my web blog; day cares

  11. No business is too big or small for Quick Electricity.

    My webpage best energy rates victoria

  12. Howdy very cool site!! Man .. Excellent .. Wonderful
    .. I’ll bookmark your web site and take the feeds additionally?I am happy to search out so many useful info here in the
    publish, we need develop more strategies on this regard,
    thanks for sharing.

    Also visit my website child care center baby cribs

  13. Wow! In the end I got a website from where I be capable of truly get useful information regarding my study and
    knowledge.

    Take a look at my homepage: child care network

  14. I read this paragraph completely regarding the comparison of most up-to-date
    and earlier technologies, it’s awesome article.

    My page child care questions

  15. I leave a response when I appreciate a article on a website or
    if I have something to contribute to the conversation. It is caused by the fire displayed in the post I read.
    And on this post HTML 介紹 – 馬老師 雲端研究室.
    I was excited enough to post a thought 🙂 I actually do have some questions for you if it’s okay.

    Is it just me or do some of the comments appear like
    they are coming from brain dead folks? 😛 And, if you are posting at other
    social sites, I would like to keep up with you. Could you make
    a list every one of your public sites like your linkedin profile, Facebook page or
    twitter feed?

    my page: kentucky day care

  16. Terrific work! This is the type of info that are meant
    to be shared across the internet. Shame on the search engines for no longer positioning this publish higher!
    Come on over and seek advice from my site . Thanks
    =)

    my web blog :: start a day care

  17. My partner and I stumbled over here different web page and thought I might
    as well check things out. I like what I see so i am just following you.

    Look forward to finding out about your web page repeatedly.

    my site … naptime at Childcare

  18. item560252370表示:

    I read this article fully on the topic of the difference of hottest and previous technologies, it’s awesome article.

    my website – item560252370

  19. right child表示:

    Wow! This could be one particular of the most beneficial blogs We’ve ever arrive across on this subject.

    Actually Wonderful. I’m also an expert in this topic therefore I can understand your hard work.

    Have a look at my site … right child

  20. Hello very nice site!! Guy .. Beautiful .. Amazing .. I will bookmark your site and take the feeds also?I am glad to find numerous useful info right here in the submit, we’d like develop
    extra techniques in this regard, thank you for sharing.

    My webpage :: day care center raleigh

  21. solar energy world glassdoor energy systems come
    in all shapes and sizes.

  22. Keep on writing, great job!

    Feel free to visit my blog: Child care networks

  23. It’s really a nice and useful piece of information. I’m glad that you simply shared this
    useful info with us. Please stay us informed like
    this. Thank you for sharing.

    Look into my web-site: care insurance

  24. Hi, Neat post. There’s an issue together with your site in web explorer,
    might test this… IE nonetheless is the marketplace leader and a big component of folks will omit your
    wonderful writing because of this problem.

    Feel free to surf to my web-site; daycare center accounting

  25. Bookmarks表示:

    Hi, i read your blog from time to time and i own a similar
    one and i was just curious if you get a lot of spam remarks?
    If so how do you protect against it, any plugin or anything you can suggest?
    I get so much lately it’s driving me crazy so any support is very much appreciated.

    my blog post: Bookmarks

  26. item560241038表示:

    Hi, just wanted to mention, I loved this article. It was funny.
    Keep on posting!

    My web-site :: item560241038

  27. Howdy very nice website!! Guy .. Beautiful .. Wonderful ..
    I will bookmark your blog and take the feeds also?I am
    glad to search out so many useful info here in the put up, we want develop extra techniques on this regard,
    thanks for sharing.

    my page – child care payments

  28. I loved as much as you’ll receive carried out right here.
    The sketch is tasteful, your authored subject matter stylish.

    nonetheless, you command get bought an shakiness over that you wish be delivering the following.
    unwell unquestionably come further formerly again as exactly the same nearly a lot
    often inside case you shield this increase.

    Also visit my webpage; Child care Centres

  29. I loved as much as you’ll receive carried out right here.
    The sketch is attractive, your authored material stylish.

    nonetheless, you command get got an shakiness over that you wish be delivering the following.

    unwell unquestionably come more formerly again since exactly the
    same nearly very often inside case you shield this increase.

    my blog :: child care center baby cribs

  30. Most heat from the sun arrives as infrared energy.

    Here is my page; moving home electric ireland

發佈回覆給「day care center raleigh」的留言 取消回覆

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