01/06/2006, 02:52
|
| | | Fecha de Ingreso: septiembre-2003 Ubicación: Pues leyéndote
Mensajes: 1.076
Antigüedad: 21 años, 5 meses Puntos: 59 | |
Prueba así:
Código:
<html>
<head>
<title>Sin titulo</title>
<style type="text/css">
<!--
.texto, #texto, p
{
font-family: verdana, arial, helvetica, lucida, sans-serif, Trebuchet MS;
font-size: 15pt;
color: #0000ff;
text-decoration: none;
text-transform: uppercase;
font-weight: normal;
}
-->
</style>
</head>
<body>
<!-- Y LO PUEDES PONER DE VARIAS FORMAS -->
<font class="texto">texto uno</font><br /><br />
<div class="texto">texto dos</div><br />
<div id="texto">texto tres</div>
<p class="texto">texto cuatro</p>
</body>
</html>
|