Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Last active June 26, 2020 22:47
Show Gist options
  • Save agustinpfs/fa30eb873f5b85e2ae6d57d83a22b2e7 to your computer and use it in GitHub Desktop.
Save agustinpfs/fa30eb873f5b85e2ae6d57d83a22b2e7 to your computer and use it in GitHub Desktop.
HTML básico. Imágenes <img>.
<!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 -->
<br>
<br>
<img src="logo.jpg" alt="logo cursosIT"> <!-- la imagen no se encuentra -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment