Monday, August 29, 2011

HTML lesson 1

 HTML (Hyper Text Markup Language)
HTML is one of the web developing languages that we use to create web pages. To write HTML codings we use text editor as notepad or wordpad. When we are going to save the html file, we have to put (.html) extension.
<html> 
<head>             basic tags in html
<title>
<body>

Structure of a html file

<html>
<head>
<title> Home Page</title>
</head>
<body>
----------------------------                         
----------------------------
</body>
</html>