<title> Tag in HTML 5
In this article I am going to tell about <title> Tag in HTML 5
Definition
<title> Tag is used for providing title to all HTML document. It defines the title in browser toolbar, displays the page search in search engines and provide title to the page in bookmark.
Supporting Browsers
Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.
Example
<html>
<head>
<title>HTML 5 Title</title>
</head>
<body>
This page provides all info about HTML 5 Tags
</body>
</html>
|
Output

Further Readings
You may also want to read these related articles
Ask Your Question
Got a programming related question? You may want to post your question here
Programming Answers here