Categories
HTML Tutorials

Meeting the itself

The head is one of two main components in any HTML document; the body is the other main component. The head, or header, provides basic information about the document, including its title and metadata (information about information), such as keywords, character encoding, author information, and a description. If you want to use an external style sheet within a page, information about that style sheet also goes into the header. The <head> element, which defines the page header, immediately follows the <html> opening element:

<html>
   <head>
   </head>
</html>