Title
The <title> tag is used to define the name of the web page that appears in the browser tab.
It helps users understand what the page is about and is also important for SEO (Search Engine Optimization).
Why is the Title Important ?
Syntax:
Example:
Output:

It helps users understand what the page is about and is also important for SEO (Search Engine Optimization).
Why is the Title Important ?
- Helps users know what the page is about.
- Makes your website look professional.
- Boosts visibility in search engines.
- It is often the first impression users get from search results.
Syntax:
<title>Your Page Title</title>
Example:
<!DOCTYPE html> <html> <head> <title>Home</title> </head> <body> <h1>Welcome to the Home Page</h1> <p>This is where your write your content.</p> </body> </html>
Output:

Key Point
- It is placed inside the <head> section of an HTML document.
- It appears in the browser tab not on the page itself.
- Search engines like Google use it to display the page title in search results.