Learning HTML

What is HTML?
 
HTML stands for Hyper Text Markup Language. This is the language used for describing web pages. HTML is not a programming language, it is a language with set of markup tags. So it is called a markup language. The markup tags describe the web page contents.
 
You will now agree that to write HTML codes one must learn the markup tags very well. HTML markup tags are also called HTML tags.
 
What are HTML Tags?
 
HTML tags are key words surrounded by angle brackets e.g. <html>. The tags normally appear in pairs, e.g. <font> and </font>, <h5> and </h5>, etc. The first tag is called opening tag or start tag and the second tag is called closing tag or end tag.
 
<h5> - Opening tag or start tag
</h5> - Closing tag or end tag.
 
There are some tags which work in single, e.g. <br>, <p>, etc.
 
How to run a HTML code?
 
Web browser like Internet Explorer or Firefox or Google Chorme can read a HTML code document and display them as web-page. The browser uses the tags to interpret the contents of the web page.