HTML Head Tag - <head>
Description
The Head tag is used to enclose other tags. The head tag has no attributes for itself.
Also called the 'header'.
The head tag can contain the following tags: title, meta, link, script, base, basefont
Examples
Simple head tag containing only a title:
<head>
<title>The title of the page</title>
</head>
Head tag containing title and meta attributes that aid search engines to add your page to the relevant search index.
<head>
<title>The title of the page</title>
<meta
name="Keywords"
content="keyword1, keyword2, keyword3" />
<meta
name="Description"
content="This site/page is about xxxx" />
</head>
Attributes