After hours trying, finally completed my survey form project. Please share your valuable suggestions to help me improve my skills. That would mean a lot. Thanks.
It’s good for a beginner and to improve more you have to learn more about CSS so that the design can be better.
Thanks Sir, I am a beginner and have just started learning. Apart from freecodecamp, what more should I do? Would you suggest something where I can practice more and more?
learn css from w3schools.com and what you learn apply it.
Download some basic PSD and try to create it yourself.
Hey @croy4744!
Your form looks good :). Two minor things. First, the Folk checkbox is not working correctly, check the id and label. Second, you have two “Weekly” radio buttons.
Have fun.
Thanks a lot for pointing out errors in code. One question sir, how did you find out that Folk checkbox was not working properly. Can you please elaborate?
@croy4744, without the label, you need to click directly on the checkbox to toggle it. So I just clicked on those labels, that’s it and looked in your HTML. As you know, the for
attribute of the label must be equal to the id
attribute of that element.
Have fun.