Lesson 2:How to use title tag in HTML document



In lesson 1 we have seen that head and body portion contents are shown together on body part of the document. In this tutorials we will see how to use the title tag to show the head part separate from the body part.

Let me show you the document which were used in lesson 1 for reference.

<HTML>

<HEAD>

Here is the head part

</HEAD>

<BODY>

Here is the body part

</BODY>

</HTML>

There are some tags which can be used within head portion of html document, one of the basic and mandatory tag in head portion of html document is <title></title> provide the descriptive information about the document for display at the top of the screen not in the body of the document.

Let me show you how to use this tag to clear you understanding.

<HTML>

<HEAD>

<TITLE>

Here is the head part

</TITLE>

</HEAD>

<BODY>

Here is the body part

</BODY>

</HTML>

There are some changes in our last document (filename.htm) you can use the same code and save the document. Addition of title tag display the contents on the title bar of the browser rather then body part as shown in the figure.

image thumb5 Lesson 2:How to use title tag in HTML document

I hope now you can understand the purpose of using <title></title> tags in the head portion of the html document.

Share this tutorial:
  • Digg
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Furl
  • Live
  • PlugIM
  • Reddit
  • Spurl
  • StumbleUpon
  • Technorati
  • TwitThis
  • YahooMyWeb
  • description
  • E-mail this story to a friend!
  • MisterWong
  • BlinkList
  • LinkedIn
  • MySpace
  • Print this article!
  • Yahoo! Buzz

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

About the Author

Adam has written 403 stories on this site.

Related Tutorials & Articles

Lesson 1:Creating an HTML Template
HTML document is a simple text file enclosed tags and text. Before starting progress in HTML following pre-requisites are required to work in HTML. -Operating System -Notepad or any other text editor for writing HTML. - Browser for viewing the results of HTML After fulfilling the requirement you can start you hands own on HTML. Working in HTML is...Read more

Write a Comment

Gravatars are small images that can show your personality. You can get your gravatar for free today!

Copyright © 2010 Sooper Tutorials. All rights reserved. Powered by WordPress.org, Website by ISolution.org.