@eghosaclintonSubmitted 12 months ago
No questions.
However, If you have better ways/ ideas to approach Responsive Design as well as CSS best practices, feel free to tell.
No questions.
However, If you have better ways/ ideas to approach Responsive Design as well as CSS best practices, feel free to tell.
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>