Saturday, October 9, 2010

Create simple HTML page

You have basic HTML document now to see some result put the following code in title and body tags.
 
<html>
<head>
<title>This is document title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>Document description goes here.....</p>
</body>
</html>
Now you have created one HTML page & save it index.html. 
now open index.html page in your browser which you are using.
& you will see result of document.

in above document we used different types of HTML tags such as (<html>,<head>,<title>,<body>, <h1>, <p>). there are many types of HTML tags.

No comments:

Post a Comment