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="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Encabezados</title> | |
| </head> | |
| <body> | |
| <!-- Emmet: h${Encabezado h$}*3 --> | |
| <h1>Encabezado h1</h1> | |
| <h2>Encabezado h2</h2> |
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="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Párrafos</title> | |
| </head> | |
| <body> | |
| <h1>Párrafos</h1> | |
| <p>Esto es un párrafo</p> | |
| <p>Esto es otro párrafo</p> |
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="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Listas</title> | |
| </head> | |
| <body> | |
| <h1>Listas</h1> | |
| <!-- Emmet: ul>li{Linea $}*5 --> | |
| <ul> |
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="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Secciones básicas</title> | |
| </head> | |
| <body> | |
| <h1>Secciones básicas - span y div</h1> | |
| <span>define una sección del documento en línea.</span> | |
| <span>define una sección del documento en línea.</span> |
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="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Salto de linea</title> | |
| </head> | |
| <body> | |
| <h1>Salto de línea</h1> | |
| <span>Lorem ipsum dolor sit amet.</span> |
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="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Imágenes</title> | |
| </head> | |
| <body> | |
| <img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="logo google"> | |
| <br> | |
| <img src="logo.png" alt="logo cursosIT"> <!-- la imagen está en la misma carpeta --> |
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="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Links</title> | |
| </head> | |
| <body> | |
| <a href="pagina2.html">Ir a página 2</a> | |
| <br> | |
| <a href="pagina2.html" target="_blank">Ir a página 2</a> |
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="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Página 2</title> | |
| </head> | |
| <body> | |
| <h1>Esta es la página pagina2.html</h1> | |
| </body> | |
| </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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Flexbox</title> | |
| <style> | |
| .contenedor { | |
| /* display: flex; */ | |
| /* flex-direction: column; */ | |
| /* justify-content: space-between; */ |
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="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Positions</title> | |
| <style> | |
| .elemento { | |
| background-color: coral; | |
| border: 5px solid purple; |