Saturday, 1 October 2011

Starting With HTML

HTML is a markup language and stands for Hyper Text Markup Language. HTML uses HTML markup tags to describe web pages.

Example

<html>
<title>Hello World !</title>
<body>
<h1>Hello World !</h1>
<p>Hellow World</p>
</body>
</html> 

To create the above HTML page, first open note pad from Start > All Programs > Accessories > Notepad. Type the above code and choose File > Save as, then select save as type 'All' and file name 'test.html'.



Done ! open the saved test.html on any browser like Internet Explorer, Chrome of Firefox. Your web page look like this.


No comments:

Post a Comment