+ 4
in the <title> tag have the title of the document.
The <title> element:
defines a title in the browser toolbar provides a title for the page when it is added to favorites and displays a title for the page in search-engine results.<title> tag is not put in the <body> tag
eg:-
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<h1>heading tag</h1>
</body>
</html>