R4R HTML HTML BASIC STEPS TO HTML DOCUMENT
previous

Home

Next

STEPS TO HTML DOCUMENT

Before moving forward let us understand the step by step creation of html document.

1.first tag <html>

This is starting tag of html document it tells the browser that it is a html document.

2.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>,<meta>,<script> instruct the from it find the information

3.the next tag defined in any html document is the <title> tag.

Information place  in this tag appears in the browser's title bar.

4.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