Creating Your First HTML Page part 3

HTML Fundamentals
Overview
Creating Your First HTML Page
17
3/3
               

The <title> Tag



To place a title on the tab describing the web page, add a <title> element to your head section:
<html>
<head>
<title>
first page</title> </head>
<body>
This is a line of text.
</body>
</html>
Try It Yourself

This will produce the following result:
The title element is important because it describes the page and is used by search engines.

Comments