backgroundbackgound

Language Version: Russian Version Englis Version
Login: Password:
Remember Me
Support: ICQ: 445375683, 265445641 Phone: 1 802 659-4224

library / Web Hosting Articles / HTML articles

  1. library page Forms
  2. library page Getting Started
  3. library page Headings
  4. library page Images
  5. library page Links
  6. library page Lists
  7. library page Page Titles
  8. library page Paragraphs
  9. library page Tables
  10. library page Tags, Attributes, and Elements

Page Titles

To add a title to your page, change your code so that it looks like this:

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>My first web page</title> </head> <body> This is my first web page </body> </html> 

We have added two new elements here, that start with the head tag and the title tag (and see how both of these close).

The head element (that which starts with the <head> opening tag and ends with the </head> tag) appears before the body element (starting with <body> and ending with </body>) and contains information about the page. The information in the head element does not appear in the browser window.

We will see later on that other elements can appear inside the head element, but the most important of them is the title element.

If you look at this document in the browser (save and refresh as before), you will see that "My first web page" will appear on the title bar of the window (not the actual canvas area). The text that you put in between the title tags has become the title of the document (surprise!). If you were to add this page to your 'favourites' (or 'bookmarks', depending on your browser), you would see that the title is also used there.




Copyright © 2005-2014. All Rights Reserved.