Responsive interactive rating component main

Solution retrospective
Understand the requirements, break down the problem, plan JS interaction, write the code and test. Need to make this a habit.
What challenges did you encounter, and how did you overcome them?Having a better understanding of expectations and planning accordingly.
What specific areas of your project would you like help with?Just more practice.
Please log in to post a comment
Log in with GitHubCommunity feedback
- P@kaamiik
Some notes:
- The
picture
tag is for the other approaches when you have different image files or different sizes. There is no need here to wrap yourimg
tag.
- Your
<i class="fa-solid fa-bolt-lightning"></i>
needs to be a button and should have a text for screen readers.
- This page structure is really important. You have a
form
that contains a group of radio buttons. For this you need to usefieldset
andlegend
element. For each radio button you need alabel
andinput
tag. Also you have a button to submit a form. Try to refactor your html code.
- Try to code mobile first. it's more convenient.
Marked as helpful - The
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord