The <title> tag in HTML defines the title of the web page, which appears:
- In the browser tab
- As the title in search engine results
- When the page is bookmarked
It is placed inside the <head> section of the HTML document.
Example
<head>
<title>My Awesome Webpage</title>
</head>
- Browser tab will show: My Awesome Webpage
- Search engines use this as the page title in results.
💡 Key Points
- Each page should have a unique
<title>for SEO. - Helps users identify the page quickly.
- Required for valid HTML documents.
💡 In Short:
The
<title>tag sets the page’s name for browsers, search engines, and bookmarks, improving usability and SEO.