<picture>
<source srcset="img/awesomeWebPImage.webp" type="image/webp">
<source srcset="img/creakyOldJPEG.jpg" type="image/jpeg">
<img src="img/creakyOldJPEG.jpg" alt="Alt Text!">
</picture>
//The last img declaration is a fallback for incompatible browsers.
//The order of sources define the importance of each format.
//So, if the first is available in its browser, will load the first one.