Friday, June 8, 2012

LEARN HTML EASILY

LEARN “HTML” PART-1
“HTML” page, usually we called web page that have two parts, “HEAD” & “BODY”. They are closed by two angle brackets like <HEAD> & <BODY>.
They are called head tag & body tag.
TAG: Tag means some symbols that use in HTML  language.
In “HTML” if you start a tag you must need to close
That tag. For that you need to add a “/” like </HEAD> & </BODY>. All HTML pages start by using “<HTML>” tag & it is finished by </HTML> tag.
Now we can see a structure of a normal HTML page.
<HTML>
<HEAD>
<TITLE>MY FIRST WEB PAGE. </TITLE>
</HEAD>
<BODY>
This is my first web page.
</BODY>
</HTML>

Here I used a new tag, <TITLE>. After starting that tag if you write something in the middle that are shown in the title bar of the web browsers. 
NOTE: In “HTML” it’s not a fact if you use capital or small letter in the tag.
If you write something between <BODY> & </BODY> tags that are shown in body of your web page, means text of your web page.
Now you save your file by using .html extension in your hard drive. Like your file name is “WEB PAGE”. So here you add .html extension. So here it appears “WEB PAGE.html”. Now you open that file by double click & you will find output:
No more today. Hopefully see you soon & waiting for your valuable comments. So practice HTML & have fun………………

No comments:

Post a Comment