Created
April 2, 2021 16:03
-
-
Save ricardodantas/0794f6a4cc882b4e409e9ab8835a489f to your computer and use it in GitHub Desktop.
Using WebP format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
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