Fun project
Alejandro
@AlexKR7All comments
- @nenadmneSubmitted about 2 years ago@AlexKR7Posted about 2 years ago
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 helpful1 - @yerbaMatteSubmitted about 2 years ago
Hi, what do you think?
@AlexKR7Posted about 2 years agoYou 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
0 - @CaioAlberto97Submitted over 2 years ago
This one came out perfectly, only flaw is no mobile version as i don't know how to do that yet, any tips?
@AlexKR7Posted over 2 years agoHello 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 helpful1