need help!

Discussion in 'HTML & Website Design' started by pasfile, Mar 21, 2008.

  1. #1
    could someone please post the html code to show links on my homepage like the image i have uploaded.

    many thanks.


    [​IMG]
     
    pasfile, Mar 21, 2008 IP
  2. wd_2k6

    wd_2k6 Peon

    Messages:
    1,740
    Likes Received:
    54
    Best Answers:
    0
    Trophy Points:
    0
    #2
    <!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):
     
    wd_2k6, Mar 21, 2008 IP
    pasfile likes this.
  3. worldpresident

    worldpresident Banned

    Messages:
    163
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #3
    <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):
     
    worldpresident, Mar 21, 2008 IP
    sawz and pasfile like this.
  4. pasfile

    pasfile Active Member

    Messages:
    603
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    60
    #4
    excellent help.

    green rep added for you guys.

    thanks again!
     
    pasfile, Mar 21, 2008 IP
  5. worldpresident

    worldpresident Banned

    Messages:
    163
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #5
    test it and see if it-s what you need.
     
    worldpresident, Mar 21, 2008 IP