Method 1:
<div id="logo">
Widget Co, Inc.
</div>
<h1>List of Widgets</h1>
Method 2:
<h1>Widget Co, Inc.</h1>
<h2>List of Widgets</h2>
Method 3:
<head>
<title>Widget Co, Inc.</title>
</head>
<body>
<h1>List of Widgets</h1>
I'd say method 2 is semantically correct, but the others will be better for SEO because the page title is in <h1 />. What would you choose?
_______________


.