by admin
7. December 2010 05:33
Hyper Text Markup Language is not a programming language its a mark up language made up of markup tags.
HTML is used to display formatted data.
HTML Tags are predefined set of tags which usually come in pair ex: <b></b>
Collection of HTML tags make up the HTML document and are called webpages.
The purpose of web browser is to display the HTML code as a formatted text.
STRUCTURE OF HTML DOCUMENT
<HTML>
<HEAD>
<TITLE>Example</TITLE>
<HEAD>
<BODY>
HTML Example
</BODY>
</HTML>