Simple html question

Discussion in 'HTML & Website Design' started by teoxy, Sep 12, 2009.

  1. #1
    Plaese have a look at the printscreen.
    I used <img src="....">and then the writings.
    I want the text to become paralel with the picture ( I mean the writings should start at the begining of the photo ... to make the space smaller) . I dont want the writing to be after the image.
    Can someone tell me which html code to use
    thanks
     

    Attached Files:

    teoxy, Sep 12, 2009 IP
  2. vinayendra

    vinayendra Active Member

    Messages:
    262
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #2
    use this
    inside img tag
     
    vinayendra, Sep 12, 2009 IP
  3. eadkung

    eadkung Active Member

    Messages:
    148
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    58
    #3
    you should put float:left style in your image tag

    
    <p>
    <img src="...." style="float:left;">
    your text......
    </p>
    
    HTML:
     
    eadkung, Sep 12, 2009 IP
  4. teoxy

    teoxy Peon

    Messages:
    122
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    thanks so much! IT worked
     
    teoxy, Sep 13, 2009 IP
  5. zeeeshan

    zeeeshan Peon

    Messages:
    102
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Nice Thankks
     
    zeeeshan, Sep 13, 2009 IP
  6. hanhash2006

    hanhash2006 Member

    Messages:
    53
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #6
    Thanks for the information...
     
    hanhash2006, Sep 14, 2009 IP
  7. mrpaisa

    mrpaisa Guest

    Messages:
    741
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    How we can create a background on table... any one tell me please...
     
    mrpaisa, Feb 17, 2010 IP
  8. nadiralishah_webexpert

    nadiralishah_webexpert Guest

    Messages:
    229
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    <img src="...." align="left">

    hope this can be also helpful to you.
     
    nadiralishah_webexpert, Feb 18, 2010 IP
  9. Airwalk Enterprise, Inc

    Airwalk Enterprise, Inc Peon

    Messages:
    126
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    For a background on a table, do this.

    <table background="background.jpg">
    <tr>
    <td></td>
    </tr>
    </table>

    or, this, if you need to combine other styles.

    <table style="background:background.jpg;">
    <tr>
    <td></td>
    </tr>
    </table>
     
    Airwalk Enterprise, Inc, Feb 18, 2010 IP
  10. mrpaisa

    mrpaisa Guest

    Messages:
    741
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Thanks for reply...
     
    mrpaisa, Feb 23, 2010 IP