Unique Titling Examples
HTML Markup Details
titleelement- The
titleelement in theheadelement should contain both the title of the website and title of the web resource. - The
titleelement is typically rendered in the title bar at the top of the graphical window of most graphical browsers such as Internet Explorer, Opera, Mozilla and Firefox. h1element- The
h1element should contain the title for the web resource and may contain the title of the website. - The page should contain at least one and no more than two
h1elements.
Example Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Career Center: Overview</title>
....
</head>
<body>
....
<h1>Overview</h1>
....
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Career Center: Overview</title>
....
</head>
<body>
....
<h1>Overview</h1>
....
</body>
</html>
