And I have the following syntax for images in <body>:
<picture>
<source class="logo" srcset="#filepath-here.webp" alt="Alt tag description filled out" />
<source class="logo" srcset="#filepath-here.png" alt="Alt tag description filled out" />
<img class="logo" srcset="#filepath-here.png" alt="Alt tag description filled out" />
</picture>
With that markup, all of the images are still broken in Safari. No console errors. Script loads fine in the browser. I've also alternatively tried using src="" instead of srcset="" for the fallback <img> but still experiencing broken images there.
I have included the following markup in
<head>
:And I have the following syntax for images in
<body>
:With that markup, all of the images are still broken in Safari. No console errors. Script loads fine in the browser. I've also alternatively tried using src="" instead of srcset="" for the fallback
<img>
but still experiencing broken images there.