How to add banner in signature?

Discussion in 'HTML & Website Design' started by The_Big_K, Jul 14, 2006.

  1. #1
    Hello DPans !

    I'd like to have a code that would insert banner in email. The banner will be hosted on my server & users just copy & insert the code in their signatures.

    What's the generic code for this?

    -The Big K-
     
    The_Big_K, Jul 14, 2006 IP
  2. my44

    my44 Peon

    Messages:
    722
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Just make sure you have HTML-enabled email. The code should be something like this:

    <a href="yourdomain.com"><img border="x" src="yourdomain.com/yourbanner.jpg" width="xx" height="xx" hspace="xx" vspace="xx"></a>
    Code (markup):
    As usual, you can strip out the border, width, height, hspace and vspace attributes if you don't want them.

    Hope that helps.
     
    my44, Jul 14, 2006 IP
  3. malc

    malc Peon

    Messages:
    129
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #3
    What my44 posted will work good for you.

    You can also use this:
    <a href="yourdomain.com" target="_blank"><img src="yourdomain.com/images/xx.png" width="xx" height="xx" border="0" /></a>
    Code (markup):
    or
    <table width="100%"  border="0" cellspacing="5" cellpadding="5">
      <tr>
        <td align="center"><a href="yourdomain.com" target="_blank"><img src="yourdomain.com/images/xx.png" width="xx" height="xx" border="0" /></a></td>
      </tr>
    </table>
    Code (markup):
    :)
     
    malc, Jul 15, 2006 IP