Posts

Showing posts with the label html head

html head Tag

Image
html head Tag             Head section    The head section container set of elements that provide the metadata for the document. This the metadata can be specify the title element , character set , author, description or keywords of  web page ( meta element ), a style sheet or relational information ( link element ) or embedded style declarations ( style element ), among others. The presence of  title element is mandatory to the inside the head section of  HTML document . Most metadata  not displayed in the browser (although  title usually appears in the browser's title bar) it can be useful for the functionality of the page. Syntax:  The <head> tag is written as <head></head> with the metadata content enclosed between the start and end tags. The <head> tag  placed between  opening and closing <html> tags. Most HTML pages must have a <title> tag within the <head> t...