Latest solutions
Latest comments
- @nenadmne@AlexKR7
It looks really good. As the only fault I will say that it is better that you change the text entry by an input, since if you enter many characters it displaces the button.
Marked as helpful - @yerbaMatte@AlexKR7
You have a slight error in the image path so don’t appear.
the correct code:
<picture> <source media="(min-width: 616px)" srcset="images/image-product-desktop.jpg" /> <source srcset="images/image-product-mobile.jpg" /> <img class="perf-img" src="images/image-product-desktop.jpg" alt="a head carved out of wood" /> </picture>
The "/" before images is what makes your image not appear
- @CaioAlberto97@AlexKR7
Hello Caio, congratulations on your project
To make the web responsive you could use media query
for instance:
@media (max-width: 650px){ .container{ background-color: aqua; } }
Try to put this code, you will see that when you make it smaller the background color changes.
You must adapt it to make it look the way you want.
I hope I've helped
Marked as helpful