September 13, 2003 · Dan Cederholm

SimpleQuiz › Part V: Site and Page Titles

Our first reader-submitted quiz question from Thomas Lackner:

Q: Which is more semantically correct for a corporate web site (that does not require an image-based logo)?

  1. <div id="logo">
    Widget Co, Inc.
    </div>
    <h1>List of Widgets</h1>
  2. <h1>Widget Co, Inc.</h1>
    <h2>List of Widgets</h2>
  3. <head>
    <title>Widget Co, Inc.</title>
    </head>
    <body>
    <h1>List of Widgets</h1>

This was touched upon in the comments of the first question, but I think it would be interesting to get people's opinion of what a best case scenario would be for the beginning structure of a document. Obviously, logo graphics play a part in most corporate sites -- but we're strictly talking page structure here. Thanks to Thomas for sending this in.