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新增 |
hey there and thank you for your info – I have definitely picked up something new from right here.
I did however expertise a few technical points using this site, as
I experienced to reload the web site many times
previous to I could get it to load properly.
I had been wondering if your web host is OK? Not that I’m complaining, but sluggish loading instances
times will often affect your placement in google and could damage your high quality score if advertising and marketing with Adwords.
Anyway I am adding this RSS to my e-mail and can look out for much more of your respective intriguing content.
Make sure you update this again soon..
Here is my blog :: daycare arlington va
hello there and thank you for your information – I’ve certainly picked up something new from right here.
I did however expertise some technical issues using this website, since I experienced to reload the website a lot of times
previous to I could get it to load correctly. I had
been wondering if your web hosting is OK? Not that I’m complaining,
but slow loading instances times will sometimes affect your placement in google and can damage your quality score if advertising and marketing with Adwords.
Well I am adding this RSS to my email and can look out for a lot more
of your respective fascinating content. Make sure you update this again very soon..
My homepage … Day Care Center Raleigh
Wow! This can be one particular of the most beneficial blogs We’ve ever arrive across on this subject.
Actually Magnificent. I am also a specialist in this topic so I can understand your hard work.
Here is my homepage; small centers
I am sure this piece of writing has touched all the internet viewers, its really really good paragraph on building up new weblog.
Take a look at my blog post :: day care center raleigh
Below you find the currently cheapest energy tariffs.
Also visit my blog … item561654231 (Lucretia)
Wow! This can be one particular of the most useful blogs
We have ever arrive across on this subject. Basically Fantastic.
I am also a specialist in this topic therefore I can understand your hard work.
My webpage: day cares
Keep on writing, great job!
my web page … daycare fairfax va
It’s actually a cool and helpful piece of information. I’m satisfied that you simply shared this useful info with
us. Please keep us up to date like this. Thank you for sharing.
Look at my blog post item560248449
hello there and thank you for your information – I have definitely picked up
something new from right here. I did however expertise a few technical points using this site,
since I experienced to reload the web site lots of times previous to I could get it
to load correctly. I had been wondering if your
hosting is OK? Not that I am complaining, but sluggish loading instances times will very frequently affect your placement in google and can damage your high quality score if ads and marketing
with Adwords. Well I am adding this RSS to my email and can look out for much more of your respective fascinating content.
Make sure you update this again very soon..
Feel free to visit my blog post parents find daycare
Hey there would you mind letting me know which hosting company you’re working with?
I’ve loaded your blog in 3 completely different web browsers and I must say this blog loads a lot faster then most.
Can you suggest a good web hosting provider at a fair price?
Thanks, I appreciate it!
Feel free to visit my webpage childcare center
hello there and thank you for your info – I have certainly picked up something new from right here.
I did however expertise some technical issues using this website, since I experienced to reload the web site
lots of times previous to I could get it to load
correctly. I had been wondering if your hosting is OK? Not that I’m complaining, but
sluggish loading instances times will sometimes affect your placement in google and can damage your quality score if advertising and
marketing with Adwords. Anyway I’m adding this RSS
to my email and could look out for a lot more of your
respective interesting content. Ensure that you update this again soon..
my web blog: item560242892
Solar panels and the associated wiring take up space.
Also visit my web-site :: energy conservation examples physics
I leave a response each time I appreciate
a article on a website or I have something to add to the discussion.
Usually it is triggered by the passion displayed in the article I read.
And on this post HTML 介紹 – 馬老師 雲端研究室.
I was actually excited enough to leave a commenta response :
) I do have a couple of questions for you if it’s allright.
Could it be simply me or do some of the remarks
appear as if they are written by brain dead folks? 😛 And, if
you are posting on other places, I would like to keep up with anything new you have
to post. Could you list the complete urls of your community pages like
your twitter feed, Facebook page or linkedin profile?
Here is my page sterling virginia child care
I was more than happy to discover this website. I want to to thank you for ones time for
this wonderful read!! I definitely loved every
part of it and I have you book-marked to see new stuff in your site.
Here is my page: child care costs
Hello, Neat post. There’s an issue together with your
site in internet explorer, might test this…
IE nonetheless is the market leader and a big part of people will pass over your fantastic writing due to this
problem.
Feel free to surf to my blog post: day Care
Hello would you mind letting me know which hosting company you’re using?
I’ve loaded your blog in 3 completely different web browsers and I must say this blog loads
a lot faster then most. Can you recommend a good web hosting provider at a
fair price? Cheers, I appreciate it!
Here is my blog post :: small centers
hello there and thank you for your info – I have certainly picked up anything new from right
here. I did however expertise several technical issues using this website,
since I experienced to reload the site lots of times previous
to I could get it to load correctly. I had been wondering if your web hosting is OK?
Not that I’m complaining, but sluggish loading instances times will
often affect your placement in google and could damage
your high-quality score if advertising and marketing with
Adwords. Anyway I am adding this RSS to my e-mail and could look out for a lot
more of your respective interesting content. Make sure you update this
again very soon..
My web page :: Home Business
Keep on writing, great job!
Also visit my page – safe child care
I loved as much as you will receive carried out right here.
The sketch is attractive, your authored material stylish.
nonetheless, you command get bought an impatience over that you wish be delivering the following.
unwell unquestionably come more formerly again since exactly the same nearly a lot often inside
case you shield this increase.
Check out my web site small centers
I read this post completely on the topic of the comparison of hottest and preceding
technologies, it’s remarkable article.
my blog post :: childcare food
Solar energy is clean. Gas plans are a lot simpler.
my web blog; Bookmarks
Wow! This could be one particular of the most beneficial blogs We’ve ever arrive across on this subject.
Basically Great. I’m also start a daycare specialist in this topic therefore I can understand your hard
work.
I’m pretty pleased to find this site. I wanted to thank you
for your time for this fantastic read!! I definitely appreciated every
bit of it and I have you book marked to look at new stuff on your site.
Have a look at my website: Bookmarks
Wow! This could be one particular of the most helpful
blogs We have ever arrive across on this subject. Actually Great.
I’m also an expert in this topic so I can understand your hard work.
Here is my web-site … Bookmarks
Solar panels and the associated wiring take up space.
Here is my blog post; item561654196
Regards for helping out, fantastic info.
my web site :: Bookmarks
I am sure this piece of writing has touched all the internet people,
its really really good paragraph on building up new weblog.
Feel free to visit my blog post: sterling va child care
I am sure this paragraph has touched all the internet users, its really really nice post on building up new weblog.
Here is my web blog: item560236400
My spouse and I stumbled over here coming from a different web address and
thought I might as well check things out. I like what I see
so i am just following you. Look forward to checking out your web page for a second time.
Have a look at my website; Choosing Daycare
I’m more than happy to discover this website. I wanted to thank you ziploc bags for childcare facilities your time due to this wonderful read!!
I definitely really liked every little bit of it and I have you saved as a favorite
to look at new information on your blog.