source

The source element is used to define a media source. It is typically used to indicate a media source that is being used.

Example:

<picture>
<source srcset="image.jpg" type="image/jpeg">
<img src="image.jpg" alt="An image">
</picture>