There are HTML coding errors you should be aware of and address.
Since copy/paste from codepen you can ignore the first warning and first two errors.
Codepen provides validators for HTML, CSS and JS. Click on the down arrow in the upper right of each section and then click on the respective āAnalyzeā link.
The one for CSS is good. Be wary of duplicating selectors.
(The one for HTML misses things which is why I recommend W3C)
Userās should be able to click on the label to toggle a selection, not just the radio button / checkbox.
correcting the errors from W3C will fix this issue
Do not use the <br> element to force line breaks or spacing. Thatās what CSS is for.
Hi @urfrenznimubro. Good job! I like the form and your project is super responsive!
Some opinions:
The labelfont-size is smaller than the placeholder text. Please make it a little bit bigger.
Add a placeholder for the textarea.
I canāt check the āDrumsā checkbox by clicking on its label. This is because you specified drumsl inside the label's for attribute whereas the id of the input is drums.
You donāt need the body tags in CodePen.
Anyway, great job! Waiting to see your next project!