content logo

Learn HTML:

Html title tag

The HTML <title> tag is used for indicating the title of the HTML document. The body title is placed between the and the tags.

HTML document title is visible via borwser's title bar.

 

Example

<!DOCTYPE html>
<html>
<head>
<title>Title comes here</title>
</head>
<body>
<p>title tag is used for indicating the title of the HTML document. HTML document title is visible via borwser's title bar.</p>
</body>
</html>

This will produce following result:

title tag is used for indicating the title of the HTML document. HTML document title is visible via borwser's title bar.

#

HTML Title Example

#

HTML Title Code

#

HTML Title Tutorial