Title

In general, a title is a name or words used to describe something or someone. For example, an Internet browser displays each web page's title at the top of the window. In this case, the title of this page is "Title."

To create a title of a web page add the <title></title> HTML tags within the <head></head> section of your HTML code. For example, in the below HTML code you can see "Example page" is surrounded with the title tags, which would make this page have "Example page" as its title when loaded.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Example page</title>
</head>

<body>
</body>
</html>

Also see: Title bar