diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:48:24 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:48:24 +0100 |
commit | ee778d6eea54935fd05022e0ba8c49456003381a (patch) | |
tree | 151a4cef804d8823cc8fc753b8edc693b7078241 /files/ko/glossary/xhtml | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-ee778d6eea54935fd05022e0ba8c49456003381a.tar.gz translated-content-ee778d6eea54935fd05022e0ba8c49456003381a.tar.bz2 translated-content-ee778d6eea54935fd05022e0ba8c49456003381a.zip |
unslug ko: move
Diffstat (limited to 'files/ko/glossary/xhtml')
-rw-r--r-- | files/ko/glossary/xhtml/index.html | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/files/ko/glossary/xhtml/index.html b/files/ko/glossary/xhtml/index.html new file mode 100644 index 0000000000..dfab34e19d --- /dev/null +++ b/files/ko/glossary/xhtml/index.html @@ -0,0 +1,76 @@ +--- +title: XHTML +slug: XHTML +tags: + - XHTML +translation_of: Glossary/XHTML +--- +<p><a href="/en-US/docs/HTML" title="HTML">HTML</a>은 HTML 또는 XHTML이라는 XML문법으로 브라우저를 통해 네트워크에 접속할 수 있습니다.</p> + +<h2 id="HTML5_와_HTMLXHTML">HTML5 와 HTML/XHTML</h2> + +<p><a href="/en-US/docs/HTML/HTML5" title="HTML5">HTML5</a> 표준은 두가지 문법을 정의합니다. MIME 타입(HTTP <code style="font-style: normal;">Content-Type</code> 헤더로 전송되는)을 참조하여 어떤 문법을 사용할지 선택합니다. : XHTML의 MIME 타입은 <code style="font-style: normal;">application/xhtml+xml</code>이며 이외는 <code>text/html</code>.</p> + +<p>아래 예제는 HTML 문서와 XHTML문서의 사용된 헤더내용을 보여줍니다.</p> + +<h3 id="HTML_문서">HTML 문서</h3> + +<pre><code>HTTP/1.1 200 OK +Content-Type: text/html + +<!DOCTYPE html> +<html lang=en> + <head> + <meta charset=utf-8> + <title>HTML</title> + </head> + <body> + <p>I am a HTML document</p> + </body> +</html></code></pre> + +<h3 id="XHTML_문서">XHTML 문서</h3> + +<pre>HTTP/1.1 200 OK Content-Type: application/xhtml+xml <html xml:lang="en" xmlns="<code>http://www.w3.org/1999/xhtml</code>"> <head> <title>XHTML</title> </head> <body> <p>I am a XHTML document</p> </body> </html></pre> + +<h2 id="MIME_type_vs_DOCTYPE">MIME type vs DOCTYPE</h2> + +<p>HTML5 이전에는 <a href="http://www.w3.org/TR/html4/" title="http://www.w3.org/TR/html4/">HTML 4.01</a> 과 <a href="http://www.w3.org/TR/xhtml1/">XHTML 1.0</a> 두개의 표준이 두개의 문법으로 분리되어 정의되었습니다. XHTML1 표준에는, XHTML을 사용하기 위해서는 특별한 DOCTYPE을 정의해야 한다고 명시되어있습니다. 하지만 브라우저들은 이 표준을 구현하지 않았고 반대로 HTML5 표준에서 다음과 같이 결정되었습니다. "<strong>content-type을 text/html로 전송한다면 XHTML을 사용하지 않는 것이다."</strong></p> + +<p>대신, 적절한 MIME 타입은 <code>Content-Type</code> HTTP 헤더에 정의 되어 있어야 합니다. 만약 <meta http-equiv=…> 같은 메타테그에 MIME 타입을 넣었다면 그것은 무시되고 <code>text/html로 간주됩니다.</code>.</p> + +<p>페이지를 <code>text/html로 서비스 하지만 XHTML로 문서를 작성했다면 아래 글에서 설명하는 많은 문제점들이 발생할 것 입니다. </code>:</p> + +<ul> + <li><a class="external" href="http://www.spartanicus.utvinternet.ie/no-xhtml.htm">No to XHTML</a> an excellent article from Spartanicus</li> + <li><a class="external" href="http://www.webdevout.net/articles/beware-of-xhtml">Beware of XHTML</a> by David Hammond</li> + <li><a class="external" href="http://www.hixie.ch/advocacy/xhtml">Sending XHTML as text/html Considered Harmful</a> by Ian Hickson</li> + <li><a class="external" href="http://www.xml.com/pub/a/2003/03/19/dive-into-xml.html">XHTML's Dirty Little Secret</a> by Mark Pilgrim</li> + <li><a class="external" href="http://hsivonen.iki.fi/xhtml-the-point/">XHTML - What's the Point?</a> by Henri Sivonen</li> + <li><a class="external" href="http://lachy.id.au/log/2005/12/xhtml-beginners">XHTML is not for Beginners</a> by Lachlan Hunt</li> +</ul> + +<h2 id="지원">지원</h2> + +<p>대부분의 브라우저들은 현재 XHTML를 지원합니다, Firefox, Chrome, Safari, Opera, 그리고 Internet Explorer (IE 9 이후). (Internet Explorer 8 과 그 이전 버전은 표준의 XHTML MIME타입을 선언한 XHTML문서를 알려지지않은 파일타입으로 간주하여 다운로드 다이얼로그를 표시합니다.)</p> + +<p>또 많이 사용하는 {{Glossary("JavaScript")}} 라이브러리와 개발자도구들은 XHTML을 제한적으로 지원하건나 지원하지 않으니 주의하십시오.</p> + +<h2 id="HTML과의_차이점">HTML과의 차이점</h2> + +<p><a href="/en-US/docs/Properly_Using_CSS_and_JavaScript_in_XHTML_Documents" title="Properly Using CSS and JavaScript in XHTML Documents">Properly Using CSS and JavaScript in XHTML Documents</a> 글의 일부문에서 HTML과 XHTML의차이점을 설명하고 있습니다.</p> + +<h2 id="Tools" name="Tools">도구</h2> + +<ul> + <li><a href="/en-US/docs/Standards-Compliant_Authoring_Tools" title="Standards-Compliant_Authoring_Tools">Standards-Compliant Authoring Tools</a></li> +</ul> + +<h2 id="바깥_고리">바깥 고리</h2> + +<ul> + <li><a href="/en-US/docs/HTML" title="HTML">HTML</a></li> + <li><a href="/en-US/docs/Namespaces" title="Namespaces">Namespaces</a></li> +</ul> + +<p><span class="alllinks"><a href="/en-US/docs/tag/XHTML:Tools" title="tag/XHTML:Tools">View All...</a></span></p> |