<title> Tag
<title> tag defines the title of a document. It displays a title in the browser’s title bar.
Example:
<!DOCTYPE html>
<html>
<head>
<title>
Title goes here
</title>
</head>
<body>
<h1>
Page content goes here...
</h1>
</body>
</html>
Run Example
Browser Support
| Tag |
Firefox |
Chrome |
IE |
Opera |
Safari |
| <title> |
Yes |
Yes |
Yes |
Yes |
Yes |