HTML head tag
As we have already seen the structure of html document. The root of the document is html tag then there are two child tags head and body. Head tag contains meta data of a web page like title, meta,link,base. Syntax
1 2 3 4 5 6 7 8 9 | <html> <head> . . </head> <body> </body> </html> |
Example
1 2 3 4 | <title>My First Page</title> Hello How are you. |