Link to home
Start Free TrialLog in
Avatar of danbrown_
danbrown_Flag for United States of America

asked on

HTML footer with embeded icons

Hello Experts - I've been asked to setup an html footer for outbound emails which uses HTML.  There are three links to Facebook, Twitter, and LinkedIn which we'd like to replace with icons representing the site rather than the URL text.  So instead of seeing this:

http://www.facebook.com/pages/company/27200207295227/

we would just see the Facebook icon.

Can anyone assist in the correct syntax?
ASKER CERTIFIED SOLUTION
Avatar of Eoin OSullivan
Eoin OSullivan
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of danbrown_

ASKER

Its a Barracuda Spam and Virus Firewall V300 which adds a simple footer to outbound emails.  I don't see a way on any of those sites to create the HTML code that will create a clickable icon for the three sites I want to link to.  I can grab images from google but I don't know how to embed them in the outbound signature either.
That first link has a GET CODE button which shows the HTML code behind the signature you see.  If you understand basic HTML you can work out how to extract just the social links.

Once you start embedding image links in signatures (to images that are stored on external websites) remember that most users will no see them by default in their email client .. they will see a box or placeholder and have to "ALLOW IMAGES" for the icons to appear.
I definitely don't understand basic HTML. Can you provide an example of what the syntax would look like if I wanted to do this?
Ah, I see it now.  The first link should do the trick, I'll give it a try now.  Thanks!
There's a lot of different ways to do it ...

The minimum is an image link wrapped with an anchor tag linking to a website

<a href="http://facebook.com"><img src="http://URL_to_facebook_icon" alt="Facebook" /></a>

After that the sky is the limit in terms of styling & layouts