HTML Title Tag
HTML Title is an important tag. HTML Title Tag shows the title of the web page which is displayed on the browser title bar.
Search Engine uses the content of title element to understand what information or knowledge to delivered in particular web page. To have a batter visibility of your web page on the search engine you have to specify the key word in title element.
Example 1 – Title of the web page specified with title tag.
<html> <head> <title> MY Web Page </title> </head> <body> <p>This is the paragraph of the we page.</p> </body> </html>
This is the syntax of the title tag which is always written inside the <head> tag. And the below images is the result of the above code.