What is Head tag used for in HTML / HTML5 . PLEASE HELP .?

A title element is required within the head element. meta , style , base , link , and script can also be used. head is required and it should be used just once. It should start immediately after the opening html tag and end directly before the opening body tag.
 
The <head> component is a compartment for all the head components. The <head> component can incorporate a title for the archive, contents, styles, meta data, and that's just the beginning. The accompanying components can go inside the <head> component: <title> (this component is required in a HTML archive)
 
The <head> element is a container for all the head elements.

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

The following elements can go inside the <head> element:

<title> (this element is required in an HTML document)
<style>
<base>
<link>
<meta>
<script>
<noscript>
 
Back
Top