Here is my submission for the Survey form exercise.
All feedback is welcome
Feedback for Survey Form
How satisfied are you with the service?
Where can we improve?
This isn’t really how you would use a <label>
. Rather it’s used for the text that accompanies each checkbox/radio button, like:
<input type="radio" id="radio0" ...><label for="radio0">Highly Satisfied</label>
<input type="radio" id="radio1" ...><label for="radio1">...</label>
By using labels as such, the label becomes clickable, and it activates its associated input.
I think the input fields could use some background color, like a slightly lighter shade of the purple background:
Too bad changing the placeholder color isn’t very straightforward, since the placeholder color looks too similar to actual input color
Looks better, but you may want to give the submit button a value
attribute, since the default text gets cut off. Or increase its width (or just remove it and use the default)
Actually there is no text associated with the submit button. it is using the default value.
Appears right for me…
Look