Logo of aks.htmlplanet.com

Links
Play Intro
New Stuff
Home
Poems
Jokes
Quotes
Wallpapers
Learn HTML
-Getting Started
-What are tags ?
-Hex Codes
-Body Tag
-Font Tag
-Useful Tags
-Tables
-Adding Images
-Linking Pages
-Adding Sounds

Suggestion Book



























DigiArc :: Owned By Aakash Ashvin Shah

 .:: Welcome to aks.htmlplanet.com !





 .:: Learn HTML > What are tags ? ...


.:: Tags are the most important part of this language. The whole language is written in tags.

.:: Symbol

It is denoted as '< ... >' and every command is written between those tags. Generally tags are ended as '< /... >'.

.:: Important tags

1] < html > & < /html >
    States the start and end of language respectively.
2] < head > & < /head>
    States the start and end of the HEAD section.
3] < title > & < /title>
    Any thing you write between those two tags will be displayed on the title bar. For e.g. try this out :

    < html >
    < head >
    < title >Write your name here< /title>
    < /head >
    < body >
    < /body >
    < /html >

    Now save this file as an extension of '.html'. For e.g, save as :
    your_name.html where ever you want. Now just open that file and see at the title bar. There you go !
4] < body > & < /body >
    Now every thing you see at present on this site is written between the body tag. i.e < body > ...... < /body >. See above in the example given, nothing was written between the start and the end of the body tag. Thus, nothing would be displayed on the screen of the browser you have. Got it ! The additional attributes of the body tag would be covered in the 'Body Tag' chapter.
.:: The remaining tags will be covered in other chapters.



Learn HTML > What are tags ?







 .:: Buck Up ! You can do it !