HTML DOCTYPE Declaration | Doctype Declaration in HTML5

HTML DOCTYPE Declaration


HTML <!DOCTYPE> Declaration

 

Definition and Usage

All HTML documents must start with a <!DOCTYPE> declaration.

The declaration is not an HTML tag. It is an “information” to the browser about what document type to expect.

<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document……
</body>

</html>