Explain the tags HEAD and TITTLE. | question and answer !



Question:-

Explain the tags HEAD and TITTLE.

Answer:-

a). HEAD - The HEAD tag is the HTML document header. It lies above the BODY tag and just below the TITTLE tag. It contains information that is important about the web page, but you will not be able to see it in your browser window. The HEAD contains no text within itself. For example:-

HTML
HEAD
/HEAD
HTML

b). TITTLE - The TITTLE tag has to be given within the HEAD tag. It contains the tittle of the document. The tittle is displayed in the tittle bar at the top of the browser window and not inside the window itself. The tittle should be short and include less then 64 characters.

HTML
HEAD
TITLE Tittle of the web page /TITlE
/HEAD
BODY
/BODY
/HTML

No comments