Created
April 21, 2021 23:23
-
-
Save furenku/18c4fa3b371537b24ece1bdd765673da to your computer and use it in GitHub Desktop.
sitio-dinamico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Sitio dinámico</title> | |
| <!-- link --> | |
| <link rel="stylesheet" href="estilos.css"> | |
| </head> | |
| <body> | |
| <!-- header --> | |
| <header> | |
| <!-- h1 --> | |
| <h1> | |
| Sitio dinámico | |
| </h1> | |
| </header> | |
| <div class="contenedor ejemplo"> | |
| <!-- article.tarjeta --> | |
| <article class="tarjeta"> | |
| <!-- .imagen --> | |
| <div class="imagen"> | |
| <!-- img --> | |
| <img src="http://unsplash.it/300/300" alt="Una imagen de ejemplo"> | |
| </div> | |
| <!-- .textos --> | |
| <div class="textos"> | |
| <!-- h3.nombre --> | |
| <h3 class="nombre"> | |
| Nombre de personaje | |
| </h3> | |
| <!-- h4.especie --> | |
| <h4 class="especie"> | |
| Especie | |
| </h4> | |
| <!-- h5.lugar --> | |
| <h5 class="lugar"> | |
| Lugar de origen | |
| </h5> | |
| </div> | |
| </article> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment