Design comparison
Solution retrospective
First of all, I'm proud that I was able to complete this challenge on time.
What challenges did you encounter, and how did you overcome them?This challenge has been smooth; I was mostly able to do it myself.
What specific areas of your project would you like help with?I would really appreciate some feedback on this project, as I have put in a lot of hard work. I would like it if you guys could look at it and tell me what you think and where I can improve!
Community feedback
- @0xabdulkhaliqPosted 7 months ago
Hello there π. Congratulations on successfully completing the challenge! π
- I have a suggestion regarding your code that I believe will be of great interest to you.
LABELS π:
input
elements wants alabel
associated with it
- A
<label>
is used to create a caption for a form control. The<label>
can be associated with a form control either implicitly by placing the control element inside the label element, or explicitly by using the for attribute
- Effective form
labels
are required to make forms accessible. The purpose ofform
elements such ascheckboxes
,radio
buttons,input
fields, etc, is often apparent to sighted users
- Even if the
form
element is not programmatically labeled. Screen readers users require useful formlabels
to identifyform
fields,
- Example:
<label for="mail"> Email Address </label> <input id="mail" name="mail" type="email" placeholder="[email protected]" />
- If you have any questions or need further clarification, you can always check out
my submission
for this challenge and/or feel free to reach out to me.
.
I hope you find this helpful π Above all, the solution you submitted is great !
Happy coding!
Marked as helpful0@nikhil-131Posted 7 months agoThanks,@0xabdulkhalid for the feedback. I'll try to keep these points in mind and implement themπ. Once again thank you for the valuable feedback.
0
Please log in to post a comment
Log in with GitHubJoin 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