Footer with DIV and UL
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title></title> <style rel="stylesheet" type="text/css"> #navigation { background-position: top left; background-repeat: no-repeat; width: 100%; text-align: center; line-height: 33px; color: red } #navigation li { display: inline; } #navigation a { color: #D4E9F0; text-decoration: none; margin: 0 8px; } #navigation a:visited { text-decoration: none } #navigation a:hover { text-decoration: underline } #footer p { text-align: center; color: red; padding: 10px 0 0 0 } #footer p a { color: red; text-decoration: underline } #footer p a:visited { text-decoration: underline } #footer p a:hover { text-decoration: none } </style> </head> <body> <div id="footer" class="mainbg"> <div id="navigation"> <ul> <li><a href="#">Home</a> |</li> <li><a href="#">Products</a> |</li> <li><a href="#">Services</a> |</li> <li><a href="#">Dealers</a> |</li> <li><a href="#">Forum</a> |</li> <li><a href="#">Contacts</a> |</li> <li><a href="#">Advertising</a></li> </ul> </div> </div> </body> </html>