I would like to do:
<a href="/">Home</a>
<h1>A great page</h1>
Where the href is as far to the left as possible, the h1 is centered and they are both on the same level.
I have got as far as making the href:
<a href="/" style="display:block;float:left;">Home</a>
and the h1:
text-align: center;
However, when I do this, the h1 isn't centered on the page, it is centered in the blank space remaining on the page after the href has been rendered.
How can I get the h1 to center as if the href on the left were not there?
Many thanks for your help!