Change
Code:
<p>
<br>
<a href="index.html">Home</a>
<a href="contact.html">-Contact</a>
<a href="services.html">-Services & Prices</a>
<br>
<br>
Devious Design© 2009. All rights reserved.
</p>
to
Code:
<ul>
<li><a href="index.html">Home</a> </li>
<li><a href="contact.html">-Contact</a> </li>
<li><a href="services.html">-Services & Prices</a> </li>
</ul>
<p>
Devious Design© 2009. All rights reserved.
</p>
and then add the following into your CSS.
Code:
#footer ul{
list-style:none;
text-align:center;
}
#footer ul li{
list-style:none;
display:inline
}
In that way, your markup will become a little more
semantic!
(You may add margin/padding, if required.)