aboutsummaryrefslogtreecommitdiff
path: root/files/vi/glossary/html/index.html
blob: 616d2ffed4a8bbd09713e5c2950621d1c92dd792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
title: HTML
slug: Glossary/HTML
translation_of: Glossary/HTML
original_slug: Tu-dien-thuat-ngu/HTML
---
<p>HTML (Ngôn ngữ đánh dấu siêu văn bản), là một ngôn ngữ mang tính miêu tả chỉ dành riêng cho cấu trúc trang web.</p>

<h2 id="LƯỢC_SỬ">LƯỢC SỬ </h2>

<p>Vào năm 1990, như một phần của công trình thiết kế web {{glossary("World Wide Web","Web")}}, Tim Berners-Lee tạo ra định nghĩa  {{glossary("hypertext")}}, thứ mà đã được Berners-Lee chính thức công nhận vào năm tiếp theo thông qua markup được dựa phần lớn vào{{glossary("SGML")}}. The {{glossary("IETF")}} began formally specifying HTML in 1993, and after several drafts released version 2.0 in 1995. In 1994 Berners-Lee founded the {{glossary("W3C")}} to develop the Web. In 1996, the W3C took over the HTML work and published the HTML 3.2 recommendation a year later. HTML 4.0 was released in 1999 and became an {{glossary("ISO")}} standard in 2000.</p>

<p>At that time, the W3C nearly abandoned HTML in favor of {{glossary("XHTML")}}, prompting the founding of an independent group called {{glossary("WHATWG")}} in 2004. Thanks to WHATWG, work on {{glossary("HTML5")}} continued: the two organizations released the first draft in 2008 and the final standard in 2014.</p>

<h2 id="Concept_and_syntax">Concept and syntax</h2>

<p>An HTML document is a plaintext document structured with {{glossary("element","elements")}}. Elements are surrounded by matching opening and closing {{Glossary("tag","tags")}}. Each tag begins and ends with angle brackets (<code>&lt;&gt;</code>). There are a few empty or <em>void</em> tags that cannot enclose any text, for instance {{htmlelement("img")}}.</p>

<p>You can extend HTML tags with {{Glossary("attribute","attributes")}}, which provide additional information affecting how the browser interprets the element:</p>

<p><img alt="Detail of the structure of an HTML element" src="https://mdn.mozillademos.org/files/7659/anatomy-of-an-html-element.png" style="height: 181px; width: 609px;"></p>

<p>An HTML file is normally saved with an <code>.htm</code> or <code>.html</code> extension, served by a {{Glossary("Server","web server")}}, and can be rendered by any {{Glossary("Browser","Web browser")}}.</p>

<h2 id="Learn_more">Learn more</h2>

<h3 id="General_knowledge">General knowledge</h3>

<ul>
 <li>{{interwiki("wikipedia", "HTML", "HTML")}} on Wikipedia</li>
</ul>

<h3 id="Learning_HTML">Learning HTML</h3>

<ul>
 <li><a href="http://developer.mozilla.org/en-US/Learn/HTML">our HTML tutorial</a></li>
 <li><a href="http://www.codecademy.com/en/tracks/web" rel="external">The web course on codecademy.com</a></li>
</ul>

<h3 id="Technical_reference">Technical reference</h3>

<ul>
 <li><a href="/en-US/docs/Web/HTML">The HTML documentation on MDN</a></li>
 <li><a href="http://www.w3.org/TR/html5/" rel="external">The HTML specification</a></li>
</ul>