Saturday, December 17, 2011

Lesson 5

Getting start of writing HTML pages

For writing html codes you need not need a special editor. It can be write simply on notepad(plain text editor).However we can also make use of differen editors like Dreamweaver and Visual Studio etc.

Let us start with a simple example


First take note pad and write the following code
<html>
<head>
</head>
<body>
Welcome to HTML
</body>
</html>

After completing the code save the notepad with your desired file name with either one of the extension .html,.htm,.mth(no difference between these).

Here we save the page as eg.html

Now you open any browser and from the file menu you just open the page that you are saved in your computer.Now you can see the output as follows



This is how we write html codes and generate web pages.This procedure will be used through out the html session

No comments:

Post a Comment