Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • P
    ronnypdev 50

    @ronnypdev

    Posted

    Hi @cliton

    Good job! but some suggestions for the images instead of using two <img /> elements try something like this. --> https://www.w3schools.com/html/html_images_picture.asp

    keep up the good work!

    <picture>
      <source media="(min-width: 650px)" srcset="img_food.jpg">
      <source media="(min-width: 465px)" srcset="img_car.jpg">
      <img src="img_girl.jpg">
      </picture>
    
    1