Assessment for "Splash Page"

I completed the following assessment: https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Mozilla_splash_page

Here’s my code: https://github.com/Toshu/MDN-Kurs-FrontendDeveloper/blob/master/SplashPage/index.html
(I hope it’s okay to use a github-repo)

Please review it.

Hi there @ToshuAmashu!

You have done some great work here, well done. I have looked over your code, and your srcset examples look fine.

For the <picture> element example, you can actually shorten it down:

<picture>
  <source media="(max-width: 600px)" srcset="red-panda-portrait-small.jpg">
  <img src="red-panda-landscape.jpg" alt="a red panda">
</picture>

You don’t need the second <source> element — if the media query in the first one doesn’t return true, it will load the image referenced in the <img> element.