Created
April 22, 2021 13:54
-
-
Save furenku/2207dfd09a781153b6f6371c88159312 to your computer and use it in GitHub Desktop.
modelocaja
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>Modelo de caja</title> | |
| <!-- link --> | |
| <link rel="stylesheet" href="estilos.css"> | |
| </head> | |
| <body> | |
| <!-- .contenedor --> | |
| <div class="contenedor"> | |
| <!-- .caja.uno --> | |
| <div class="caja uno"> | |
| Uno | |
| </div> | |
| <!-- .caja.dos --> | |
| <div class="caja dos"> | |
| Dos | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment