HTML WEB DESIGN

 

separator-blank.png

 

GUIDE – TAB TITLE

 

Notice the screen capture at the top of your web browser.  Each tab has a title.  We can specify our webpage to have a title like that as well.

 

 

THE <title> TAG

 

  • The <title> tag is placed in the <head> section of your document.

  • You simply place your title in it.

 

 

<html>

<head>

   <title>My page</title>

</head>

<body>

</body>

</html>

 

 

  • Try it and test your page.  You should see the title in the tab at the top.