HTML Title Element
1.One of the most important parts of a header is title.
2.The <title> tag defines the title of the document.
3.Title is the small text that will appear in title bar of browser.
4.The title element is required in all HTML/XHTML documents.
5.The <title> tag provides a title for the page when it is added to favorites.
6.The <title> tag displays in search-engine results.
Example
<html>
<head>
<body>
The content of the document....
</body>
</html>
<head>
<title>Create Account</title>
</head><body>
The content of the document....
</body>
</html>
Output
Create Account will be displayed on the title bar.
No comments:
Post a Comment