English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <title> Tag

Der HTML <title>-Tag enthält den Titel des Dokuments, der im Browserfenster oben angezeigt wird oder als Lesezeichenname verwendet wird, wenn die Webseite zu den "Favoriten" hinzugefügt wird. Dieser Tag wird auch als <title>-Element bezeichnet.

Online-Beispiel

Definieren Sie den Titel Ihres HTML-Dokuments:

!doctype html
<html>
<head>
<meta charset="UTF-8">
<title>HTML5Beispiel von de.oldtoolbag.com</title>
</head>
<body>
</body>
</html>
Testen Sie es heraus ‹/›
In this HTML5In the document example, we created a title of "HTML5Title of the example document.

Browser Compatibility

IEFirefoxOperaChromeSafari

All major browsers support the <title> tag.

Definition and Usage

<title> Tag defines the document title and is required in all HTML documents.

<title> Element:

  • Define the title in the browser toolbar

  • Title provided when the page is added to favorites

  • Page title displayed in search engine results

Tips and Notes

Note:An HTML document cannot have more than one <title> element.

Tip:If you omit the <title> tag, the document is invalid as HTML.

You must include the <title> tag within the <head> tag of the document.

If you do not include the <title> tag within the <head> tag, you will receive the following error during HTML validation: "The element header lacks the required example of the child element title."

Global Attributes

Support of <title> Tag Global Attributes of HTML.

Related Articles

HTML Tutorial:HTML Header