Wednesday, November 4, 2015

How To Write Title Tags in Html And Use

  • If you look at this document in the browser (save and reload as before), 
  • you will see that “My first web page” will appear on a tab or 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 “favorites” (or “bookmarks”, depending on your browser), you would see that the title is also used there.
 Example :
     

<!DOCTYPE html>
<html>
<head>
    <title>Templateeq</title>
</head>
<body>
    This is my first web Site
</body>
</html>