what is Doctype HTML?
how to use Doctype HTML?
Answers
Answered by
2
Answer:
Doctype stands for Document Type Declaration. It informs the web browser about the type and version of HTML used in building the web document. This helps the browser to handle and load it properly. While the HTML syntax for this statement is somewhat simple, you must note each version of HTML has its own rules.
Explanation:
Search Results
Featured snippet from the web
DOCTYPE> tag is used to inform the browser about the version of HTML used in the document.
...
Let's see an example of HTML document with doctype declaration.
<! DOCTYPE html>
<html>
<head>
<title>This is the title</title>
</head>
<body>
This is the content of the document.
</body>
Similar questions