Hello Jay,
At a glance, the biggest issue I noticed is that you are wrapping each of your input
elements inside a form
element of their own. Instead, there should be just one form
element, encompassing all the options, as well as the submit button at the very end.
Also, inside the element brackets, the attributes must be written as such
id="unique-id" class="shared-class"
What I noticed is that sometimes you use spaces as such:
id = "unique-id"
or at times missed the double quotation marks
id = unique-id
Finally, keep in mind that id
s are supposed to be unique, which means that no two elements can share the same id
. If you want to employ a shared style for a set of elements, then you must make use of a class
, instead of an id
.