diff --git a/img lazy loading in html.md b/img lazy loading in html.md new file mode 100644 index 0000000..1f7aa5f --- /dev/null +++ b/img lazy loading in html.md @@ -0,0 +1,15 @@ +# img lazy loading in html + +To implement [[Lazy Loading]] to an `` tag, add the attrbitue `loading=lazy` + + + +This will load the image when scrolling is near the viewport, using the [Intersection Observer API](https://developers.google.com/web/updates/2016/04/intersectionobserver) + +## Further reading + +- + +## Why learned this + +- Accidentally: a rabbit hole that started at [Jason Crawford's github](https://github.com/jasoncrawford) and ended at