View Single Post
  #13 (permalink)  
Old Jan 9th, 2007, 12:31
Ryan Fait's Avatar
Ryan Fait Ryan Fait is offline
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: a web design portfolio

Code: Select all
	<div id="usualfooter">
		<a href="/">Home</a>  |  <a href="/about/">About</a>  |  <a href="/services/">Services</a>  |  <a href="/portfolio/">Portfolio</a>  |  <a href="/contact/">Contact</a><br />
		Valid XHTML and CSS. All code written by Karinne Legault.<br />
		Proudly hosted by <a href="http://www.bluephyre.com">BluePhyre</a>.
	</div>
This should be:

Code: Select all
<div class="footer">
	<ul id="usualfooter">
		<li><a href="/">Home</a></li>
		<li><a href="/about/">About</a></li>
		<li><a href="/services/">Services</a></li>
		<li><a href="/portfolio/">Portfolio</a></li>
		<li><a href="/contact/">Contact</a></li>
	</ul>
	<p>Valid XHTML and CSS. All code written by Karinne Legault.</p>
	<p>Proudly hosted by <a href="http://www.bluephyre.com">BluePhyre</a>.</p>
</div>
Don't let text be unbounded; put it in a header, quote or a paragraph.
Reply With Quote