Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Imágenes | Medios y Tablas
HTML Definitivo
course content

Contenido del Curso

HTML Definitivo

HTML Definitivo

1. Desarrollo Web
2. Tags y Atributos
3. Estructura del Documento
4. Medios y Tablas
5. Formularios

bookImágenes

Las imágenes son una parte esencial del diseño web. Hacen que una página web resulte atractiva para el visitante. Pueden incluirse fácilmente en un documento HTML mediante la tag <img>.

html

index

css

index

js

index

copy
  • src - atributo obligatorio. Su valor es la ruta a la ubicación de la imagen. La ruta puede ser absoluta y relativa;
  • alt - atributo obligatorio. Proporciona un texto alternativo que se puede mostrar cuando la imagen no se puede renderizar;
  • width y height - especifica el tamaño de la imagen en píxeles. Sin estos atributos, la imagen se mostrará en su tamaño original.

atributo alt

Hacemos que la descripción de la imagen sea informativa y significativa. Ayuda a describir la imagen para las personas con problemas de visión o que no pueden verla. De esta manera, el navegador leerá el atributo alt, y un usuario podría entender por qué tenemos esta imagen.

Imaginemos el siguiente ejemplo. Tenemos una fuente sobre carreras de caballos. Queremos mostrar cómo se preparan los competidores para las carreras.

Un mal valor para el atributo alt sería:

Un buen valor para el atributo alt sería:

html

index

css

index

js

index

copy

Good value for the alt attribute will be:

html

index

css

index

js

index

copy

The alt text "A man on a horse" is too generic and lacks context. It provides a basic description, but it doesn't convey useful details about the scene or the purpose of the image.

Nota

Para resumir la diferencia entre rutas relativas y absolutas, una ruta absoluta representa el enlace real que cualquiera puede utilizar para acceder a una imagen. Por otro lado, una ruta relativa es un enlace dentro del contexto de su propio proyecto. Se refiere a una imagen local y a una ruta a la que cualquiera dentro del proyecto puede acceder.

html

index

css

index

js

index

copy

Relative path

It specifies the location of the image file relative to the current document. For example:

It means that the image.jpg file located in the images directory.

Please inspect the real example provided in the code sandbox below. You will find the images folder, which contains the sun.png file.

Note

To summarize the difference between relative and absolute paths, an absolute path represents the actual link that anyone can use to access an image. On the other hand, a relative path is a link within the context of your own project. It refers to a local image and path that anyone within the project can access.

html

index

css

index

js

index

copy

Note

To summarize the difference between relative and absolute paths, an absolute path represents the actual link that anyone can use to access an image. On the other hand, a relative path is a link within the context of your own project. It refers to a local image and path that anyone within the project can access.

Note

To summarize the difference between relative and absolute paths, an absolute path represents the actual link that anyone can use to access an image. On the other hand, a relative path is a link within the context of your own project. It refers to a local image and path that anyone within the project can access.

1. Which tag can we use to put an image on a website?
2. What attribute is required to specify for an `<img/>` tag?
Which tag can we use to put an image on a website?

Which tag can we use to put an image on a website?

Selecciona la respuesta correcta

What attribute is required to specify for an `<img/>` tag?

What attribute is required to specify for an <img/> tag?

Selecciona la respuesta correcta

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 4. Capítulo 1
We're sorry to hear that something went wrong. What happened?
some-alt