HTML Basics

Title tag

Posted on 30th April 2013

Title: <title>

Title tag sets the title of the document and it should be placed in the <head> section of the HTML page. The text between the title tags will be displayed on the top of the browser window.

Example Code:

<html>
<head>
<title>My First Page</title>
</head>
<body>
Basic HTML Tags
</body>
</html>

Displayed as:

Title Tag example

Post a comment

Comments

Nothing yet..be the first to share wisdom.