SESIÓN 6 HTML


HTML:

<!DOCTYPE html>
<html>
     <head lang="es-ES">
          <title>Prueba 7</title>
        <meta charset="utf-8">
        <link rel="stylesheet" href="Practica7.css">
     </head>
     <body>
        <header>
            <h1>Prueba 7</h1>
            <nav>Menú de navegación</nav>
        </header>
     
        <article></article>
           <h2>Artículo de información</h2>
           <section>
              <h3>Columna 1</h3>
               <p>Haz el amor y no la guerra</p>
           </section>
           <section>
              <h3>Columna 2</h3>
              <p>Para trabajar basta estar convencido de una cosa: que trabajar es menos aburrido que divertirse.</p>
           </section>
           <section>
              <h3>Columna 3</h3>
              <p>El mundo no está en peligro por las malas personas sino por aquellas que permiten la maldad.</p>
           </section>
     
        <footer>Pie de página</footer>
    </body>


</html>

CSS:

html {
    background: #e6e9e9;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    padding: 2em 2em 4em;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #0083e8;
}

b, strong {
    font-weight: 600;
}

samp {
    display: none;
}

img {
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 10px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }

}

Comentarios

Entradas populares