Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/07/2006, 06:12
Avatar de paolamurias
paolamurias
Colaboradora
 
Fecha de Ingreso: junio-2006
Ubicación: Rosario
Mensajes: 2.317
Antigüedad: 17 años, 10 meses
Puntos: 189
outlook y css

Hola amigos, quiero maquetar un mail básico en Outlook express y tengo problemas!
yo hago esto:
En el mensaje:
Formato/aplicar diseño de fondo/mail.htm
No se ve el texto, que hago mal?
tengo que vincular la hoja css con LINK?
¿Y COMMO LO HAGO?
ACA VA EL CODIGO
Cita:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>mail rse</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
p {
font-size: 12px;
line-height: 22px;
margin-top: 20px;
margin-bottom: 10px;
}
h1 {
font-family:Georgia, "Times New Roman", Times, serif;
font-size: 18px;
line-height: 18px;
color:#FF9900;
font-weight: bold italic;
text-align:center;
margin-top: 10;
margin-bottom: 15;
}
h2 {
font-family:Georgia, "Times New Roman", Times, serif;
font-size: 14px;
line-height: 16px;
color:#336600;
text-align:center;
font-weight: normal;
margin-top: 0;
margin-bottom: 15;
}
h3 {
font-size: 16px;
line-height: 22px;
font-weight: bold;
margin-top: 0;
margin-bottom: 0;
}
#content {
padding: 10px;
margin-top: 20px;
margin-bottom: 20px;
margin-right: auto;
margin-left: auto; /* opera does not like 'margin:20px auto' */
background: #fff;
border: 3px ridge #fff;
text-align:left; /* part 2 of 2 centering hack */
width: 500px; /* ie5win fudge begins */
}
</style>
</head>

<body style="background-color:#003366">
<div id="content">
<h1>En el Día del Niño,todos los chicos son felices cuando reciben un presente</h1>
<h2>Este año, nuestra celebración por este día, se abre a la comunidad, y queremos invitarte a ser parte de la iniciativa.</h2>
</div>
</body>
</html>
MUUCHAS GRACIAS