English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
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.
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 ‹/›
IEFirefoxOperaChromeSafari
All major browsers support the <title> tag.
<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
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."
Support of <title> Tag Global Attributes of HTML.
HTML Tutorial:HTML Header