aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/glossary/html/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-tw/glossary/html/index.html')
-rw-r--r--files/zh-tw/glossary/html/index.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/files/zh-tw/glossary/html/index.html b/files/zh-tw/glossary/html/index.html
new file mode 100644
index 0000000000..c2a0dd5ed0
--- /dev/null
+++ b/files/zh-tw/glossary/html/index.html
@@ -0,0 +1,51 @@
+---
+title: HTML
+slug: Glossary/HTML
+tags:
+ - CodingScripting
+ - Glossary
+ - HTML
+ - 'l10n:priority'
+translation_of: Glossary/HTML
+---
+<div>{{QuickLinksWithSubpages("/en-US/docs/Glossary")}}</div>
+
+<p>超文件標示語言(<strong>HTML</strong>,HyperText Markup Language)是用於指定網頁結構的描述性語言。</p>
+
+<h2 id="簡歷">簡歷</h2>
+
+<p>在 1990 年,作為 Tim Berners-Lee 對{{Glossary("World Wide Web","網路")}}所知的一部分,{{Glossary("hypertext","超文本")}}的概念被定義起來了。隔年,Berners-Lee 以 {{Glossary("SGML")}} 的標記為基礎定型起來。{{Glossary("IETF")}} 於 1993 年規範了 HTML、並在 1995 年發布 2.0(第二版)。1994 年 Berners-Lee 成立了 {{Glossary("W3C")}} 以便發展網路。1996 年,W3C 接手 HTML 的工作,並在隔年發布了 HTML 3.2 Recommendation(HTML 3.2 建議)。在 1999 年發布了 HTML 4.0 並在 2000 年成為 {{Glossary("ISO")}} 標準。</p>
+
+<p>這段期間,偏好 {{Glossary("XHTML")}} 的 W3C 幾乎拋棄了 HTML,使得 2004 年一個稱作 {{Glossary("WHATWG")}} 的獨立團體成立起來。也因為 WHATWG 的努力,{{Glossary("HTML5")}} 的工作持續進行:兩個組織在 2008 年發布了第一份草稿、最終標準則在 2014 年實行。</p>
+
+<h2 id="概念及語法">概念及語法</h2>
+
+<p>HTML 是個以{{Glossary("element","元素")}}構成的純文字文件。元素通常被開啟與關閉的{{Glossary("tag","標籤")}}包覆起來。每個標籤都以角括號(<code>&lt;&gt;</code>)作為開始與結束。不過,也有些不包覆任何文件的空標籤(empty or <em>void</em> tag),例如 {{htmlelement("img")}}。</p>
+
+<p>你可以透過{{Glossary("attribute","屬性")}}擴展 HTML 標籤,它能提供附加訊息,以改變瀏覽器的解釋方法:</p>
+
+<p><img alt="HTML 元素的結構資訊" src="https://mdn.mozillademos.org/files/7659/anatomy-of-an-html-element.png" style="height: 181px; width: 609px;"></p>
+
+<p>HTML <span class="tlid-translation translation" lang="zh-TW"><span title="">文件</span></span>的副檔名通常存為 <code>.htm</code> 或是 <code>.html</code>。它們會放在{{Glossary("伺服器","網頁伺服器")}}上運作、並由{{Glossary("瀏覽器")}}渲染。</p>
+
+<h2 id="深入了解">深入了解</h2>
+
+<h3 id="基本知識">基本知識</h3>
+
+<ul>
+ <li>維基百科的 {{interwiki("wikipedia", "HTML", "HTML")}}</li>
+</ul>
+
+<h3 id="學習_HTML">學習 HTML</h3>
+
+<ul>
+ <li><a href="/zh-TW/Learn/HTML">我們的 HTML 教學</a></li>
+ <li><a href="http://www.codecademy.com/en/tracks/web" rel="external">codecademy.com 的網路課程</a></li>
+</ul>
+
+<h3 id="技術參考">技術參考</h3>
+
+<ul>
+ <li><a href="/zh-TW/docs/Web/HTML">HTML 的 CSS 文件</a></li>
+ <li><a href="http://www.w3.org/TR/html5/" rel="external">HTML 規範</a></li>
+</ul>