View Single Post
Old 01-16-2012, 08:18 PM   PM User | #3
Excavator
Master Coder


 
Excavator's Avatar
 
Join Date: Dec 2006
Location: Alaska
Posts: 9,410
Thanks: 22
Thanked 1,765 Times in 1,749 Posts
Excavator has a spectacular aura aboutExcavator has a spectacular aura aboutExcavator has a spectacular aura about
Hello vseven,
I tried not to change too much of your original ... didn't test it in an email though so no idea if it works -
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<TITLE>Test HTML</TITLE>
<META content="text/html; charset=windows-1252" http-equiv=Content-Type>
<style type="text/css">
#wrap { width: 600px; }
a.logo {
	margin: 6px;
	float: right;
	text-align: center;
	width: 260px;
	height: 60px;
}
font.name {
	font-family: arial, Verdana, sans-serif;
	font-size: 110%;
	color: black;
	font-weight: bold;
}
font.info {
	font-family: arial, Verdana, sans-serif;
	font-size: 80%;
	color: black;
	font-weight: normal;
}
a:visited { color:#FF3333; }
a:link { color:#0000FF; }
</style>
</HEAD>
<BODY lang=EN-US link=blue vLink=purple>
    <div id="wrap">
    	<A href="http://www.google.com/" class="logo"><IMG src="http://support.whgardiner.com/temp/SampleImage.jpg" alt="Hello" border=0></a>
        <FONT class="name">Name of Person</FONT><BR>
        <FONT class="info"> 
            Address City State Zip<BR>
            Phone 000-000-0000 &nbsp;&nbsp; Fax 000-000-0000<BR>
            <A href="mailto:Email@none.com">Email@nonenone.com</A>&nbsp; &nbsp; 
            <A href="http://www.google.com/">www.google.com</A><BR>
        </FONT> 
    <!--end wrap--></div>
</BODY>
</HTML>
__________________
Validate often DURING development - Use it like a splelchecker | Debug during Development |Write it for FireFox, ignore IE
Use the right DocType | Validate your markup | Validate your CSS | Why validating is good | Why tables are bad
Excavator is offline   Reply With Quote