diff options
Diffstat (limited to 'files/vi/tu-dien-thuat-ngu/html/index.html')
-rw-r--r-- | files/vi/tu-dien-thuat-ngu/html/index.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/files/vi/tu-dien-thuat-ngu/html/index.html b/files/vi/tu-dien-thuat-ngu/html/index.html new file mode 100644 index 0000000000..68a5ba4c81 --- /dev/null +++ b/files/vi/tu-dien-thuat-ngu/html/index.html @@ -0,0 +1,44 @@ +--- +title: HTML +slug: Tu-dien-thuat-ngu/HTML +translation_of: Glossary/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><></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> |