Using HTML <head>

Let's learn how to make use of the HTML <head> tag in this lesson.

We'll cover the following...

The <head> tag is an important part of HTML. It is a container of non-content elements that belong to the whole page. It must contain the <title> element and may contain one of the following additional elements as well: <style>, <link>, <script>, <noscript>, <meta>, and <base>.

<title> is required as it provides the title of the page that is displayed in the browser toolbar, in favorite, provided the page is added to Favorites, and also used by search engines to display the headline when the page is in within the search results.

In Chapter: A Short Tour of HTML, CSS, and JavaScript, you ...