Why use Webp images
- Webp images are especially built for the web by google to optimize the loading speed of images
- The image is smaller 26% by size compared to PNG images
- WebP supports transparency at a cost of just 22% additional bytes
Try to use WebP images in the website instead of PNG and JPEG images
Example
<img src="image.webp" alt="" />
Enter fullscreen mode Exit fullscreen mode
Thanks for reading…