Previous | Home | Next |
Before moving forward let us understand the step by step creation of html document.
first tag <html>: This is starting tag of html document it tells the browser that it is a html document.
then write second tag called <head>: This is second tag which is defined in any html document .various tag can be defined inside the <head> tag. which are tags like <title >,<base >,<link >,<title >,<meta > instruct the from it find the information
the next tag defined in any html document is the <title > tag: Information place in this tag appears in the browser's title bar.
The <body> tag is the next tag which defines after the <title > tag: Inside this tag all the information is placed which is to displayed on the screen.
The Structure of HTML Document
<html> <head> <title > this is html </title> <body> </body> </title> </head> </html>
Previous | Home | Next |