DOCTYPE Tag in HTML 5
<!DOCTYPE> Tag used for the web browser about the version of markup language in which a web page is written.
<!DOCTYPE> Tag is case-insensitive.
<!DOCTYPE html>
Example
<!DOCTYPE html>
<html>
<head>
<title>Document Type</title>
</head>
<body>
This is Document Type Content.
</body>
</html>
Post Your Comment