다음 문서에서는 DOCTYPE HTML의 개요를 제공합니다. html 문서 유형에서는 사용자 지침을 선언하고 html, xml 코딩 자체와 같은 마크업 언어를 사용하여 데이터를 웹 브라우저로 변환하는 데 사용됩니다. 우리는 문서의 초기 단계로 문서 유형을 선언했습니다. 일반적으로 DOCTYPE은 태그, 요소 또는 속성을 고려하지 않습니다. 마크업 언어 버전을 식별하는 데 도움이 됩니다. 태그는 HTML 마크업 언어의 루트 태그 또는 요소입니다. 또한 모든 웹 콘텐츠를 저장하고 보관하는 데 도움이 되며,
구문:
HTML이나 마크업 언어를 사용할 때 문서 유형 선언과 마찬가지로 각 태그와 요소에 대한 구문 세트가 있습니다.
아래는
<!DOCTYPE html> <html> <head> </head> <body> ---Some Front End logic ,codes,tags,elements--- </body> </html>
다음은 예시입니다.
코드:
<!DOCTYPE html> <html> <head> <title>Sample</title> </head> <body> <p>Welcome To My Domain </p> </body> </html>
출력:
코드:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title> Sample Example for Strict DTD </title> </head> <body> <a href><h1>Please Click </h1></a> <marquee> Welcome To My Domain </marquee> </body> </html>
출력:
코드:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <title> Frameset DTD Example </title> </head> <frameset cols="23%,*,43%"> <frame src="first.html"> <frame src="second.html"> <frame src="third.html"> </frameset> </html>
Output:
In the above set of examples, we will see the sample and basic dtd usages in html. In the first example, we use the that is come under the html5 version. So we use normal and basic html codings. In the second example, we use strict dtd in html 4 version so it will accept the particular tags and elements; it will not be allowed to use the deprecated tag elements in the second example, but in the last example, we use the frameset dtd in the html documents it allows the deprecated elements as well as whatever we use the html 4 transitional dtd elements and also will include the frameset tag elements.
In html will use DOCTYPE as a better choice for creating the web-based applications, and also it will be helpful for the website users browsers that the document is related to the html based documents. If we suppose will not use the html tag elements in the inside of the document that should be with the DOCTYPE declaration, it must be must with the html standards with the help of web browsers, and templates will check the html standards.
위 내용은 문서 유형 HTML의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!