Good job @iangoodman. Something to revisit;
- Run your HTML code through the W3C validator.
- There are HTML coding errors you should be aware of and address.
- This
</input>
is not a valid HTML tag. Remember, input
is a self-closing element.
- Since copy/paste from codepen you can ignore the first warning and first two errors.
FCC recommends you use the Read, Search, Ask method. This is a question that can be answered with a quick Google search. I found this;
name is identifier and is used in http request sent by browser to server as a variable name associated with data contained in the value attribute of element. The id on the other hand is a unique identifier for browser, client side and JavaScript. Hence form needs an id while its elements need a name .
Are you talking about the radio button and checkbox labels? If that’s the case if you’ve ever filled out a form you may have noticed that the label is closely associated with its radio button / checkbox. How do you want to format it? What have you tried?
Side note. It seems that quite a bit of the HTML is identical to the sample. It’s best to start with a blank page and write your own code. You’ll understand more of what you’re doing because you did it.