Design comparison
SolutionDesign
Solution retrospective
This is my 10th Frontend Mentor solution and my First Junior Challenge Solution
I'd appreciate feedback on my solution and contributions on how to make it better and more optimized and professional
Thank You!!!
Community feedback
- @0xabdulPosted over 1 year ago
Hey there well congrats on completing the huddle landing page 😃
- In Html :
- whenever using the input tag must be contained labels tag
- Programmatically associate labels with all form controls. The recommended method for most circumstances is to use the label element and an explicit association using the for and id attributes. The examples here are ordered from the most common acceptable solution to the least common acceptable solution.
<label for="firstname">First name:</label> <input type="text" id="firstname">
The label can also be implicit by wrapping the <label> element around the input:
<label>First name: <input type="text"></label>
- I Hope it's useful for you
- Happy Coding dude
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