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,340 Responses

  1. Oh my goodness! a fantastic post dude. Thank you Even so I will be experiencing issue with ur rss . Don’t know why Can not subscribe to it. Will there be any person getting identical rss problem? Anybody who knows kindly respond. Thnkx

  2. Gaga tweeted a voicemail coupled with a backlink to Japan Prayer Bracelets. She specially designed a bracelet, with pretty much all sales revenue going to Japanese relief plans

  3. Sorry for that large evaluation, but I’m really loving the brand new Zune, as well as wish this particular, along with the superb reviews another individuals wrote, can help you determine if it’s the correct selection for you.

  4. home ac units表示:

    You need to experience a tournament for just one of the highest quality blogs over the internet. I’m going to suggest this site!

  5. Jogue em um cassino confiavel Blaze

  6. Ganhe no cassino mais confiavel Blaze

  7. George表示:

    I’ve been surfing on-line greater than 3 hours as of late, but I by no means found any attention-grabbing article like yours. It’s lovely value enough for me. In my view, if all site owners and bloggers made just right content material as you did, the web shall be much more helpful than ever before!

  8. Отличный сайт! Всем рекомендую!Тут Вы можете приобреститовары для охоты

  9. WilliamTic表示:

    Сегодня, когда аттестат является началом успешной карьеры в любой области, многие пытаются найти максимально простой путь получения образования. Необходимость наличия документа об образовании переоценить попросту невозможно. Ведь диплом открывает дверь перед людьми, желающими начать профессиональную деятельность или учиться в ВУЗе.
    В данном контексте мы предлагаем очень быстро получить этот необходимый документ. Вы можете купить аттестат, и это является удачным решением для всех, кто не смог завершить образование или потерял документ. Аттестаты выпускаются аккуратно, с максимальным вниманием ко всем деталям, чтобы в итоге получился полностью оригинальный документ.
    Плюсы такого решения заключаются не только в том, что можно максимально быстро получить свой аттестат. Весь процесс организовывается комфортно, с нашей поддержкой. От выбора требуемого образца до правильного заполнения личной информации и доставки по России — все под полным контролем опытных мастеров.
    Для всех, кто хочет найти максимально быстрый способ получить необходимый документ, наша компания готова предложить выгодное решение. Заказать аттестат – это значит избежать долгого процесса обучения и не теряя времени переходить к достижению личных целей, будь то поступление в ВУЗ или старт карьеры.

    http://longlive.com/node/1078

  10. melhor opcao para jogos de azar Blaze

  11. Tente a sorte no melhor cassino Blaze

  12. This web site is often a walk-through for all of the knowledge you wanted concerning this and didn’t know who must. Glimpse here, and you’ll absolutely discover it.

  13. Good write-up, I?m regular visitor of one?s web site, maintain up the nice operate, and It is going to be a regular visitor for a lengthy time.

  14. Eu recomendo um otimo cassino Blaze

  15. Seu cassino da sorte espera por voce Blaze

  16. Nice post. I be taught one thing more challenging on completely different blogs everyday. It’s going to always be stimulating to read content from different writers and practice a bit of one thing from their store. I?d choose to make use of some with the content on my blog whether you don?t mind. Natually I?ll offer you a hyperlink in your web blog. Thanks for sharing.

  17. One thing I would like to say is that often before acquiring more pc memory, have a look at the machine into which it could well be installed. When the machine is definitely running Windows XP, for instance, the particular memory limit is 3.25GB. Setting up in excess of this would easily constitute any waste. Make certain that one’s mother board can handle the upgrade amount, as well. Interesting blog post.

  18. You are not the average blog writer, man. You certainly have something powerful to contribute to the World Wide Web. Such a outstanding blog. Ill come back again for more. blisters on feet

  19. Eu recomendo um cassino confiavel Blaze

  20. I have been exploring for a little bit for any high quality articles or blog posts in this sort of space . Exploring in Yahoo I eventually stumbled upon this web site. Studying this info So i am happy to express that I’ve an incredibly just right uncanny feeling I found out just what I needed. I such a lot for sure will make sure to do not fail to remember this site and provides it a look a relentless basis.

  21. Excelente cassino para ganhos Blaze

  22. An fascinating discussion will probably be worth comment. I do think that you can write regarding this topic, it will not become a taboo subject but typically everyone is too little to communicate in on such topics. Yet another. Cheers

  23. Hello there. I discovered your website by way of Google at the same time as searching for a similar matter, your website got here up. It appears great. I’ve bookmarked it in my google bookmarks to come back later.

  24. DichaelDax表示:

    Hi! Do you know if they make any plugins to assist with SEO? I’m trying to get my blog to rank for some targeted keywords but I’m not seeing very good success. If you know of any please share. Thank you!

    newfinbiz.ru/page/13В 
    balaklavskiy-16.ru/user/9827/В 
    pmk-polymer.ru/content/kontaktyВ 
    passo.su/forums/index.php?autocom=gallery&req=si&img=2801%C3%82%C2%A0В 
    conservatives.click/index.php?do=/public/user/blogs/name_Alanpoe/page_7/В 

  25. My brother suggested I might like this website. He was once entirely right. This submit actually made my day. You can not consider simply how a lot time I had spent for this info! Thank you!

  26. What i do not realize is actually how you’re not really much more well-liked than you might be right now. You are so intelligent. You realize thus considerably relating to this subject, made me personally consider it from so many varied angles. Its like women and men aren’t fascinated unless it’s one thing to do with Lady gaga! Your own stuffs nice. Always maintain it up!

  27. Um otimo cassino para ganhar Blaze

  28. O lugar perfeito para jogos de azar Blaze

發佈留言

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