
What is HEAD in HTML document?

Hi,
Here is the answer,
The HEAD element contains header information about the document, such as its title, keywords, description, and style sheet.
HEAD is required in all documents, but its start and end tags are always optional. The HEAD element is followed by the BODY in HTML 4 Strict and Transitional documents; in HTML 4 Frameset documents, the HEAD is followed by a FRAMESET element.Content in the HEAD is generally not rendered, with the exception of the required TITLE element. If the end tag is omitted, the first BODY or FRAMESET element implies the end of the HEAD.
<html> <head> <title>Title of the document</title> </head> <body> The content of the document. </body> </html>
Thanks.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.