Advertisement

Responsive Advertisement

HTML PAGE TITLE

In HTML, the page title is set using the <title>tag inside the <head> section.

Example:

<!DOCTYPE html>

<html>

  <head>

    <title>My Website Title</title>

  </head>

<body>

    <h1>Welcome to my page</h1>

</body>

</html>

The text inside <title> appears:
  • In the browser tab
  • In bookmarks/favorites
  • Often as the title shown by search engines
You can replace "My Website Title" with whatever title you want.

Post a Comment

0 Comments