I know the fallback image is used when none of sources matches the attribute media.
However, I am trying to do if the media is matched but the scrset wasn't loaded, then the fallback img will be load in case my image somehow missing at least the fallback could be a backup.
or is there any method can be suit this situation?
<picture>
<source media="(min-width: 320px)" srcset="/img/not-exist.jpg">
<img src="https://images.unsplash.com/photo-1519455953755-af066f52f1a6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80" alt="this is img">
</picture>