Link list inside a DIV
? <!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"> #links { float: left; width: 300px; line-height: 53px; margin: 30px 0 0 232px; display: inline; background-color: blue; } #links a { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: red; text-decoration: underline; margin: 0 12px; } #links a:visited { text-decoration: underline } #links a:hover { text-decoration: none } </style> </head> <body> <div id="links"> <a href="#">Advanced Search</a> <a href="#">Help</a> <a href="#">More Search Tools</a> </div> </body> </html>