I'm not sure whether my method for making it responsive was the appropriate one because this was my first project with Tailwind CSS. Any comments would be greatly appreciated.
1.Make sure to write some description on all of your images in the alt attribute. π
https://www.w3schools.com/tags/att_img_alt.asp
2.You can put all of your element in one parent container with a <main></main> tag.That represents the use of semantic HTML, which is more descriptive and SEO friendly.
1.You can do some reset CSS styles. By resetting your styles, you avoid defaulting to the browserβs built-in styles, which differs from browser to browser. π
You can reset styles like this, just write the following code in the CSS file:
Congrats for completing the challenge! Everything looks great and the code is clean. π
One tiny suggestion, you can put all of your element in one parent container with a <main></main> tag, instead of putting it in a div .design-container. That represents the use of semantic HTML, which is more descriptive and SEO friendly.