Sobes.tech
Junior — Middle

Millised pildifailid võivad olla sisestatud <img> sildiga HTML-is?

sobes.tech AI

Vastus AI-lt

The <img> tag in HTML supports embedding various raster and vector image formats, with the most common being:

  • JPEG (.jpg, .jpeg) — for photographs with many colors.
  • PNG (.png) — supports transparency and lossless compression.
  • GIF (.gif) — supports animation and limited color palette.
  • SVG (.svg) — vector format, scalable without loss of quality.
  • WebP (.webp) — modern format with good compression and transparency support.

Usage example:

<img src="image.png" alt="Image description">

It is important that the browser supports the image format, otherwise it will not be displayed.