I have to make a microsite and I want to know the best method of using a logo in the HTML template. (Ignore the fact this is invalid code, its just arbitrary waffle if I use alt="" for example.)
Option 1:
<a href="#">
<img src="logo.gif" />
</a>
Option 2:
<h1>
<a href="#">
<img src="logo.gif" />
</a>
</h1>
Option 3:
<h1>
<a href="#">
</a>
</h1>
h1{background: url(logo.gif);}
h1 a{height: #px; width: #px;}
Option 4:
Is using h1, h2 or h3 better for SEO, as I understand that repetitive h1's are a bad idea and the company brand is NOT the main subject for every page on it's website?
What I normally use is Option 3, like this:
<h2>
<span>Company name</span>
<a href="#">
</a>
</h2>
h2{height: #px; width: #px; background: url(logo.gif);}
h2 a{display: block; height: #px; width: #px;}
h2 a span{display: none;}