Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

More compressed PNGs #1

Merged
merged 5 commits into from
Aug 21, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added img/data.webp
Binary file not shown.
Binary file added img/marina.webp
Binary file not shown.
Binary file added img/mathe.webp
Binary file not shown.
Binary file modified img/staedte.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/staedte.webp
Binary file not shown.
Binary file modified img/vulva.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/vulva.webp
Binary file not shown.
32 changes: 26 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,12 @@
</div>
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="3000">
<a href="https://wo-ist-vulva.com/" target="_blank">
<img src="./img/vulva.PNG" alt="..."\>
<a href="https://woistvulva.site/" target="_blank">
<picture>
<source type="image/webp" srcset="./img/vulva.webp">
<source type="image/png" srcset="./img/vulva.PNG">
<img src="./img/vulva.PNG" alt='Bild von "wo ist vulva"'>
</picture>
</a>
<div class="carousel-caption d-block fw-bold">
<h1 onclick='window.location.href = "https://woistvulva.site/";'>Wo ist Vulva?</h1>
Expand All @@ -47,7 +51,11 @@ <h1 onclick='window.location.href = "https://woistvulva.site/";'>Wo ist Vulva?</
</div>
<div class="carousel-item" data-bs-interval="3000">
<a href="https://mathe.hobbylos.online/" target="_blank">
<img src="./img/mathe.PNG" alt="..."\ loading="lazy">
<picture loading="lazy">
<source type="image/webp" srcset="./img/mathe.webp">
<source type="image/png" srcset="./img/mathe.PNG">
<img src="./img/mathe.PNG" alt="Bild von den Mathefacts" loading="lazy">
</picture>
</a>
<div class="carousel-caption d-block fw-bold">
<h1 onclick='window.location.href = "https://mathe.hobbylos.online/";'>Mathefacts</h1>
Expand All @@ -57,7 +65,11 @@ <h1 onclick='window.location.href = "https://mathe.hobbylos.online/";'>Mathefact
</div>
<div class="carousel-item" data-bs-interval=3000">
<a href="https://staedte.hobbylos.online/" target="_blank">
<img src="./img/staedte.PNG" alt="..."\ loading="lazy">
<picture loading="lazy">
<source type="image/webp" srcset="./img/staedte.webp">
<source type="image/png" srcset="./img/staedte.PNG">
<img src="./img/staedte.PNG" alt="Bild von den Städtegeschichten" loading="lazy">
</picture>
</a>
<div class="carousel-caption d-block fw-bold">
<h1 onclick='window.location.href = "https://stadt.hobbylos.online/";'>Städtegeschichten</h1>
Expand All @@ -67,7 +79,11 @@ <h1 onclick='window.location.href = "https://stadt.hobbylos.online/";'>Städtege
</div>
<div class="carousel-item" data-bs-interval="3000">
<a href="https://data.hobbylos.online/graphql" target="_blank">
<img src="./img/data.PNG" alt="..."\ loading="lazy">
<picture loading="lazy">
<source type="image/webp" srcset="./img/data.webp">
<source type="image/png" srcset="./img/data.PNG">
<img src="./img/data.PNG" alt="Bild von der Datenbank" loading="lazy">
</picture>
</a>
<div class="carousel-caption d-block fw-bold">
<h1>Hobbylos Data</h1>
Expand Down Expand Up @@ -99,7 +115,11 @@ <h1>Lobbyhoes Nerds Projekte</h1>
</p>
</aside>

<img id="marina" src="./img/marina.png" alt="Marina">
<picture>
<source type="image/webp" srcset="./img/marina.webp">
<source type="image/png" srcset="./img/marina.PNG">
<img id="marina" src="./img/marina.png" alt="Marina">
</picture>

<div class="modal fade" id="staticBackdropModal1" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel1" aria-hidden="true">
<div class="modal-dialog">
Expand Down