Created
June 8, 2018 02:24
-
-
Save SethuSenthil/e76b03e1f50cecc94af75e6f72453bd3 to your computer and use it in GitHub Desktop.
Most fast and efficient way of loading WebP images
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
<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