title element
<title>
Explanation
Title element is used to give the heading/caption for a document.
<head>
<title>Text</title>
</head>
Example Code:
Result :
Title Of the Page/Document
HTML5
- Contents mentioned inside this element will be exhibited only in the "title panel" of the browser.
- There can be only one <title> in a HTML document.
- It should be inserted inside the <head>.
It is available in the previuos versions of HTML.
It supports only the
Global Attributes in HTML5.
Limitations:
It is applicable to all major browsers.