HTML head Tag

Example

An HTML document, with a required <title> tag in the head section:
<html>
<head>
<title>Title of the document</title>
</head>

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

</html>

Teach Yourself  by BH24 HTML Editor Tool!

The <head> tag is supported in all major browsers.

Definition and Usage

The <head> element is a container for all the head elements.
The <head> element must include a title for the document, and can include scripts, styles, meta information, and more.