Design comparison
SolutionDesign
Solution retrospective
Finally finished this project. Input is appreciated especially on the JS part. Learn a lot about the DOM along the way.
Community feedback
- @johnny064Posted about 2 years ago
Ok here are some suggestions to improve yourself:
- you should not put an action attribute in the input tag cause you have already put an action in the form tag. your code
<input class=`submitBtn` type=`submit` action=`submit` value=`Confirm`>
code should be like this:
<input class=`submitBtn` type=`submit` value=`Confirm`>
Also, a button should not have "action = ' ' ".
*** Please see the HTML validation after the solution submits. there you can know the error and suggestions. It will help you to improve @ioangheraszim
Thanks Kazi
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