Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/02/2013, 09:30
victormolla14
 
Fecha de Ingreso: febrero-2013
Mensajes: 4
Antigüedad: 11 años, 2 meses
Puntos: 0
Respuesta: dos <h1> con diferente CSS

No te he entendido muy bien, pero me imagino que querrás algo así:
Código Javascript:
Ver original
  1. <html>
  2.     <head>
  3.         <style>
  4.         h1 {color: red;
  5.         font-family: lucida sans;
  6.         }
  7.         #n{color:blue;
  8.         font-family: times new roman;
  9.         }
  10.         </style>
  11.     </head>
  12.     <body>
  13.         <h1> titulo 1</h1>
  14.         <h1 id="n"> titulo 3</h1>
  15.     </body>
  16. </html>