Created
March 29, 2018 11:28
-
-
Save DavidPeralvarez/9712cc7ba3956de6dced0d9fc9090923 to your computer and use it in GitHub Desktop.
Imágenes HTML
This file contains 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> | |
<head> | |
<meta charset="utf-8"> | |
<title>Imágenes en HTML</title> | |
</head> | |
<body> | |
<h1>Practicando con imágenes en HTML</h1> | |
<h2>Cosas que me gustan</h2> | |
<h3>Me encantan pasear por Cadaqués</h3> | |
<img src="img/cadaques.jpg" alt="Paseo marítimo de Cadaqués" width="400" height="277"> | |
<h3>Me chiflan las conspiranoias</h3> | |
<img src="img/conspiraciones.jpg" alt="Alien y humano conduciendo y chillando" width="400" height="187"> | |
<h3>Me encanta adoptar perros viejitos</h3> | |
<img src="img/perros.jpg" alt="Perro practicando surf" width="400" height="300"> | |
<h3>Me alimentaría de por vida sólo comiendo maquis de salmón</h3> | |
<img src="img/sushi.jpg" alt="Maquis de salmón" width="400" height="267"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment