CSS

  • CSS, CSS2.

  • Anidables (usuario, enlaces, detalles).

  • Un usuario puede elegir o deshabilitar los del autor.

  • Permite ajustar tipos, colores tamaños, separaciones, márgenes, sonidos, fondos visuales y musicales, voces.

  • Estilos, fondos, sujetos a negociación de idioma.

  • Asociados a elementos (anidados o no) y clases

  • Ejemplo:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
      <meta http-equiv="Content-Type" content="text/html; 
                                      charset=UTF-8">
      <head>
        <title>Título</title>
        <link rel=stylesheet type="text/css" media="screen"
              href="http://www.dit.upm.es/~joaquin/joaquin.css">
        <style type="text/css">
          h1 {color: blue}
          h2 {color: green}
        </style>
      </head>
      <body>
        <h1>La cabecera es azul</h1>
        <p style="color:red">Y el párrafo es rojo.</p>
        <p>Y este del color por omisión.</p>
      </body>
    </html>

    Ver