I feel a little sorry for you posting this question, as you are in danger of some pretty harsh comments from HTML/CSS purists! But I think you know to expect that. 
In other words, that's not great coding. Anyhow, you'll notice at a certain point that you go from having an opening and closing <center> element to only having a closing one.
Code:
<h1><a href="http://danhughes.libsyn.com/"><center><font color="black">Dan Hughes on Metal Detecting</center></a>
<h1><a href="http://www.refugeearth.org/BoydZoo/career/CarsonEnt/CarsonEnterprises.html">Glenn Carson Enterprises</center></a>
Adding in the missing opening <center> tags may help (I'm not sure, though).
However … here are a few pointers:
- only use one H1 per page, so perhaps use H2s if you want to stick with headings, or ideally, use <p>s that are styled to suit.
- instead of all that <center> stuff, just use one simple CSS rule:
Code:
p {text-align: center}
Much nicer!
And you can also add a color
Code:
p {text-align: center; color: black;}
A lot nicer than all that redundant and outdated <font> stuff, I'm sure you will agree.
Bookmarks