References

Collection of references for web development.

HTML title (element) tag

Description

The HTML <title> element represents the title of the document, this element is required for all documents.

Example

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