Imágenes

La etiqueta <img /> hace posible que las páginas web puedan tener imágenes.

html5

Los atributos que solemos utilizar con la etiqueta img son:

Ejemplo:

<!DOCTYPE html>
<html lang="es" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title>Imágenes</title>
  </head>
  <body>
    <h2>Universidad Rey Juan Carlos</h2>
    <img src="urjc-logo.png" alt="Imagen: Logo URJC">
  </body>
</html>

html5