Just need some feedback https://codepen.io/nard00/full/QWyxaRO I’m not finished with it as yet just want some feedback.
The <label>
s aren’t working properly on the check boxes. Remember, the for
attribute on the <label>
points to the id
attribute on the corresponding input. Also, id
s can’t have spaces in them.
Also, don’t use <br>
to create new lines/vertical spacing between elements. Use CSS instead. You can wrap a group of elements in a <div>
to create a natural block if you like.
1 Like
Thanks for your response really appreciate it.