Skip to content

Instantly share code, notes, and snippets.

@SethuSenthil
Created June 8, 2018 02:24
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 SethuSenthil/e76b03e1f50cecc94af75e6f72453bd3 to your computer and use it in GitHub Desktop.
Save SethuSenthil/e76b03e1f50cecc94af75e6f72453bd3 to your computer and use it in GitHub Desktop.
Most fast and efficient way of loading WebP images
<picture>
<source srcset="media/image.webp" type="image/webp">
<source srcset="media/image.png" type="image/jpeg">
<img src="media/bootstrap.png" height="138" width="138">
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment