Last active
August 13, 2021 14:35
-
-
Save furenku/41af2bf331b1628dd948b311c787d5ef to your computer and use it in GitHub Desktop.
index.html
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
| <!-- html:5 --> | |
| <!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>Clase 1</title> | |
| <!-- link --> | |
| <link rel="stylesheet" href="estilos.css"> | |
| </head> | |
| <body> | |
| <!-- header.cabecera --> | |
| <header class="cabecera"> | |
| <!-- h1 --> | |
| <h1> | |
| Rick and Morty | |
| </h1> | |
| </header> | |
| <!-- main.principal --> | |
| <main class="principal"> | |
| <!-- article.character --> | |
| <article class="character"> | |
| <!-- .image --> | |
| <div class="image"> | |
| <!-- img --> | |
| <img src="http://placehold.it/300/300" alt="Imagen de prueba"> | |
| </div> | |
| <!-- .info --> | |
| <div class="info"> | |
| <!-- h3 --> | |
| <h3> | |
| Nombre de personaje | |
| </h3> | |
| <!-- p --> | |
| <p> | |
| Especie | |
| </p> | |
| <!-- p --> | |
| <p> | |
| Origen | |
| </p> | |
| </div> | |
| </article> | |
| </main> | |
| <!-- footer.pie --> | |
| <footer class="pie"> | |
| Pie | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment