Saturday, October 9, 2010

Creating HTML Document

Creating an HTML document is easy.To begin coding HTML you need only two things: a simple-text editor and a web browser. Notepad is the most basic of simple-text editors and you will probably code a fair amount of HTML with it.

just copy below code & paste in your notepad & save page as index.html

<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

Now, open index.html page in your browser (Mozilla,Internet Explorer, etc...).

you will find heading & paragraph in index.html page.

No comments:

Post a Comment