Hoping you can help me here, I'm new to coding and really struggling to get, what I'm sure is a very simple instruction, executed.
I want to align my gif image in the center middle of the page, I just can't seem to get it right; also I don't want to use CSS, as being a novice I found it wouldn't stay directly in the center on changing screen sizes, but I'm sure there is a way around that.
The CSS code is as follows;
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:active {text-decoration: none;}
a:hover {text-decoration: underline; color: red;}
HTML:
<p style="position: absolute; center: 0; width: 100%; vertical-align: middle">
<img alt="logo" src="logov3.gif" title="logo">
</p>
<p style="position: absolute; bottom: 0; left: 0; width: 100%; text-align: center">
<a href="mailto:info@valuableconsultants.com">
<font color="#000000" face="Book Antiqua" size="2">info@valuableconsulatants.com</font>
</a>
</p>