could someone please post the html code to show links on my homepage like the image i have uploaded. many thanks.
<!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <style type="text/css" media="screen"> #links {width:100%; } .links1 {width:33%; text-align: center; float:left;} .clear {clear:left;} </style> </head> <body> <div id="links"> <div class="links1">Your Link Here<br/>Your Link Here<br />Your Link Here<br /></div> <div class="links1">Your Link Here<br/>Your Link Here<br />Your Link Here<br /></div> <div class="links1">Your Link Here<br/>Your Link Here<br />Your Link Here<br /></div> </div> <div class="clear"></div> </body> </html> Code (markup):
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Your Link Here</title> </head> <body> <p><a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a><br /> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a><br /> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a><br /> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a></p> </body> </html> Code (markup): OR <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Your Link Here</title> <style type="text/css"> <!-- #Layer1 { position:absolute; width:352px; height:111px; z-index:1; } --> </style> </head> <body> <div id="Layer1"> <p><a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a><br /> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a><br /> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a><br /> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a> <a href="http://yourlinkhere.com">Your Link Here</a></p></div> </body> </html> Code (markup):