Coding: XHTML: Title Tags
Let's add a title next. Every web page should have a title that appears in the window caption bar above the page. This title should describe the contents of the page. The title tags <title> and </title> should go between the start head and end head tag. Unlike the file name, the title can use upper and lowercase letters, spacing, and some types of punctuation.
<title>Annette Lamb's Personal Page</title>
Your Document
Your document should now look something like this:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Annette Lamb's Personal Page</title>
</head>
</html>
Learn More
title tag from w3schools