Can't make my snippet from link HTML link for extension

I tried to paste a html image with an email address (Outlook) to save it as a template. I find that there is a snippet that needs to repeat is not working correctly (so that the color expands to where the text ends). Is there anyone who can help me with this issue? Below is the coding I am using.

<HTML>
  <HEAD>
    <TITLE>Ticket Closure Notice</TITLE>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
  </HEAD>

 <BODY BGCOLOR="#FFFFFF" LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0">
   <TABLE WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0">
     <TR>
       <TD width="114" valign="top"><IMG SRC="http://intranet.ca.state.gov/email_templates/images/left_bar_outages_advisory.gif"></TD>
       <TD valign="top" width="100%">

         <TABLE WIDTH=100% height="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
           <TR>
             <TD height="128" bordercolor="#FFFFFF" background="images on server 2/top_bar_advisory_tile.gif">
               <img src="images on server 2/top_bar_advisory.gif" width="157" height="128"></TD>
           </TR>
           <TR>
             <TD height="100%" bordercolor="#FFFFFF"><br>
               <br></TD>
           </TR>
           <TR>
             <TD align="right" height="74"><br>
               <hr style="BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 100%; BORDER-BOTTOM: gray 1px solid; HEIGHT: 1px; TEXT-ALIGN: right">
               <a href="http://caweb/doweb"><img src="http://intranet.ca.state.gov/email_templates/images/CA-CST-lg.gif" width="144" height="52" border="0"></a></TD>
           </TR>
         </TABLE>

         </TD>
      </TR></TABLE>
  </BODY>
</HTML>

      

+1


source to share


1 answer


There are all kinds of style attributes that don't work in Outlook (and other email clients).



Here's a good reference: http://www.campaignmonitor.com/css/

+1


source







All Articles