Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Created March 29, 2018 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidPeralvarez/9712cc7ba3956de6dced0d9fc9090923 to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/9712cc7ba3956de6dced0d9fc9090923 to your computer and use it in GitHub Desktop.
Imágenes HTML
<!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