Skip to content

Instantly share code, notes, and snippets.

@ricardodantas
Created April 2, 2021 16:03
Show Gist options
  • Save ricardodantas/0794f6a4cc882b4e409e9ab8835a489f to your computer and use it in GitHub Desktop.
Save ricardodantas/0794f6a4cc882b4e409e9ab8835a489f to your computer and use it in GitHub Desktop.
Using WebP format
<!--
The browser uses the first listed source that's in
a format it supports. If the browser does not support
any of the formats listed in the <source> tags, it
falls back to loading the image specified by the <img> tag.
-->
<picture>
<source type="image/webp" srcset="green-environment.webp">
<source type="image/jpeg" srcset="green-environment.jpg">
<img src="green-environment.jpg" alt="">
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment