Skip to content

Instantly share code, notes, and snippets.

View mikebabb's full-sized avatar

Mike Babb mikebabb

View GitHub Profile
@mikebabb
mikebabb / picture-webp-ex-4.html
Last active May 1, 2019 20:24
Blog post example: Final mockup, picture serving webp and smaller png
<picture>
<source srcset="images/img_webp/raspberry.webp" media="(min-width: 750px)" type="image/webp">
<source srcset="images/img_original/raspberry.png" media="(min-width: 750px)">
<source srcset="images/img_webp/raspberry_small.webp" type="image/webp">
<img src="images/img_original/raspberry_small.png" alt="An illustration of some raspberries">
</picture>
@mikebabb
mikebabb / picture-webp-ex-3.html
Last active July 5, 2016 20:30
Blog post example: Picture element serving webp
<picture>
<source srcset="images/img_webp/raspberry.webp" type="image/webp">
<img src="images/img_original/raspberry.png" alt="An illustration of some raspberries">
</picture>
@mikebabb
mikebabb / picture-webp-ex-2.html
Last active July 5, 2016 20:29
Blog post example: Picture element serving a smaller PNG
<picture>
<source srcset="images/img_original/raspberry.png" media="(min-width: 750px)">
<img src="images/img_original/raspberry_small.png" alt="An illustration of some raspberries">
</picture>
@mikebabb
mikebabb / picture-webp-ex-1.html
Last active July 5, 2016 20:28
Blog post example: Simple image element
<img src="images/img_original/raspberry.png" alt="An illustration of some raspberries">