This element defines the title of a document. The <title> element must be located inside the <head> element.
<title> |
Yes | Yes | Yes | Yes | Yes |
None.
The <title> tag supports the Global Attributes in HTML.
title { display: none; }
<html>
<head>
<title>title element example</title>
</head>
<body>
body content
</body>
</html>