Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Image Minification and WebP Version #13

Merged
merged 4 commits into from
Oct 6, 2019
Merged
Show file tree
Hide file tree
Changes from all 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 modified ichbineinekartoffel.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 ichbineinekartoffel.webp
Binary file not shown.
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
</style>
</head>
<body>
<img src="./ichbineinekartoffel.png" alt="Ich bin eine kartoffel : I am a potato" />
<picture>
<source type="image/webp" srcset="./ichbineinekartoffel.webp" />
<source srcset="./ichbineinekartoffel.png" />
<img src="./ichbineinekartoffel.png" alt="Ich bin eine kartoffel : I am a potato" />
</picture>
</body>
</html>