A A A A A

Unique Titling Examples

HTML Markup Details

title element
The title element in the head element should contain both the title of the website and title of the web resource.
The title element 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.
h1 element
The h1 element 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 h1 elements.

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>

Navigation

Other HTML Best Practices

Working Group