To define a title of your document to your HTML Document, you will need a Title Tag. Title element only contains text and shows the text in a browser’s title bar/page’s tab.
We use <title> and </title> to end the Title tag. We can’t use more than one title in an HTML Document.
Learn the usage of Important HTML TITLE:
<title>relevant and attractive phrase | ADD YOUR TITLE</title>
Just look at the following example to see how it looks like :
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”> <html>
<head>
<title>My Test page</title>
</head>
<body>
Here you find a test text
</body>
</html>
Check out the following example: