bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/HTML/HTML Foundations
HTML•HTML Foundations

HTML Page Title

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind HTML Page Title?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

<!___ html>
3Order

Put the learning moves in the order that makes the concept easiest to apply.

The title is shown in the browser's title bar:
The <title> element adds a title to your page:
Every web page should have a page title to describe the meaning of the page.

Every web page should have a page title to describe the meaning of the page.

The Title Element

The <title> element adds a title to your page:

Example

<!DOCTYPE html>
<html>
<head>
<title>HTML Tutorial</title>
 </head>
<body>
The content of the document......
</body>
</html>

The title is shown in the browser's title bar:

What is a Good Title?

The title should describe the content and the meaning of the page.

The page title is very important for search engine optimization (SEO). The text is used by search engine algorithms to decide the order when listing pages in search results.

The <title> element:

  • defines a title in the browser toolbar
  • provides a title for the page when it is added to favorites
  • displays a title for the page in search engine-results

So, try to make the title as accurate and meaningful as possible!

HTML Title Tag

TagDescription
<title>Defines the title of the document

For a complete list of all available HTML tags, visit our HTML Tag Reference .

Previous

HTML Favicon

Next

HTML Tables