Tengo el siguiente codigo:
Cita:
y ahora estaba diseñando una pagina web con uno de esos editores online (google sites) y queria asignar las clases al div del formulario pero google sites solo permite poner codigo en el body, por lo que no puedo poner las clases en el <head>.<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>Documento sin título</title>
<style type="text/css">
#form {
width:210px;
text-align:center;
margin: auto;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}
#titulo {
font-size:14px;
color:#FFFFFF;
font-style:inherit;
text-align:center;
width:208px;
border: thin solid #333333;
background-color: #FF0000;
font-weight: bolder;
}
.Estilo1 {font-size: 9px}
</style>
</head>
<body>
....
....
</body>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>Documento sin título</title>
<style type="text/css">
#form {
width:210px;
text-align:center;
margin: auto;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}
#titulo {
font-size:14px;
color:#FFFFFF;
font-style:inherit;
text-align:center;
width:208px;
border: thin solid #333333;
background-color: #FF0000;
font-weight: bolder;
}
.Estilo1 {font-size: 9px}
</style>
</head>
<body>
....
....
</body>
Como pongo los divs directamente con la clase que le corresponde?
Supongo que seria algo asi:
Cita:
es correcto? y hay alguna forma de hacerlo automaticamente?<div id="form" font-size="14px" color="#FFFFFF" .....(y asi una a una).... >
Gracias a todos!