Skip to content

Instantly share code, notes, and snippets.

@henshaw
Created January 28, 2022 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henshaw/0b8129d3897f918e21f1379e100218be to your computer and use it in GitHub Desktop.
Save henshaw/0b8129d3897f918e21f1379e100218be to your computer and use it in GitHub Desktop.
Picture element supporting AVIF and WebP image formats
<picture>
<source srcset="image.avif" type="image/avif">
<source srcset="image.webp" type="image/webp">
<img src="image.jpg" alt="description">
</picture>
@henshaw
Copy link
Author

henshaw commented Jan 28, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment