whats the adscense html code how to write it

Discussion in 'HTML & Website Design' started by brathamike, Mar 30, 2008.

  1. #1
    Hello does anyone know how to make a html code like google adscense but vertical not horizontal

    for instance


    hello
    my name is
    my name is

    i would like 6 rows and centered. does anyone know the html code for this. and not a css format

    thanks
    mike
     
    brathamike, Mar 30, 2008 IP
  2. donniedarko

    donniedarko Member

    Messages:
    29
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #2
    Do you mean you want your text to look vertical? If so, just use <br>

    I'm not sure what you are looking for, could you be a bit more specific or even use images?
     
    donniedarko, Mar 31, 2008 IP
  3. brathamike

    brathamike Peon

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    hello yes i would like my text vertical like google adsense ads are
    here is a example

    header
    description
    link

    i would like 6 in a row. if you know how can you give me the
    code please
     
    brathamike, Mar 31, 2008 IP
  4. donniedarko

    donniedarko Member

    Messages:
    29
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #4
    <html>
     <head>
     </head>
     <body>
      <p>
    line 1<br>
    line 2<br>
    line 3<br>
    line 4<br>
    line 5<br>
    line 6<br>
      </p>
     </body>
    </html>
    PHP:
     
    donniedarko, Mar 31, 2008 IP
  5. brathamike

    brathamike Peon

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    thanks for the code but that didnt work..its horizontal and only 1 i would need 6 columns
     
    brathamike, Mar 31, 2008 IP
  6. brathamike

    brathamike Peon

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Maybe im explaining it wrong sorry im a newbie and im trying to figure out how to code. what im trying to do is make adds on my site just like google adscense but verticle i hope that explains better
     
    brathamike, Mar 31, 2008 IP
  7. donniedarko

    donniedarko Member

    Messages:
    29
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #7
    <html>
     <head>
     </head>
     <body>
    <table border="0" cellspacing="15" cellpadding="10">
    <td>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    </td>
    <td>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    </td>
    <td>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    </td>
    <td>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    </td>
    <td>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    </td>
    <td>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    text<br>
    </td>
    </table>
     </body>
    </html>
    PHP:
     
    donniedarko, Mar 31, 2008 IP
  8. brathamike

    brathamike Peon

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Thank you that did it thanks for your help
     
    brathamike, Mar 31, 2008 IP
  9. donniedarko

    donniedarko Member

    Messages:
    29
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #9
    donniedarko, Mar 31, 2008 IP
  10. kg_lew

    kg_lew Peon

    Messages:
    755
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #10
    so you're basically trying to copy the look of adsense ads ?
     
    kg_lew, Mar 31, 2008 IP
  11. brathamike

    brathamike Peon

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Yes thats correct
     
    brathamike, Mar 31, 2008 IP