References

Collection of references for web development.

HTML !DOCTYPE tag

Description

The HTML <!DOCTYPE> Tag must be the first tag you declare in your document, it tells the browser what version of HTML the document is written in.

Example

<!DOCTYPE html>
<html>
	<head>
		<title>Page Title</title>
	</head>
	<body>
		<p>Page content...</p>
	</body>
</html>

More Examples