Ping single column page, Mobile first using Flexbox, SCSS and JS

Solution retrospective
Hello, any feedback is welcome!
Please log in to post a comment
Log in with GitHubCommunity feedback
- @ringm
Looks good! Just remember for accesibility reasons, you should have a
<label>
for every<input>
.Your form should be structured like this:
<form action="/action_page.php"> <label for="firstName">First Name</label> <input type="text" name="firstName" id="firstName" value="First Name"> </form>
More info on labels here
Happy coding!
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