Tell us what’s happening: it keeps saying my coding is wrong even though I watched someone else do the same line on youtube and passed.
Describe your issue in detail here.
I cannot figure out what is wrong. It keeps saying Your new checkbox should have an id
attribute with the value lazy
and a name
attribute with the value personality
. Check that there is a space after the opening tag’s name and/or there are spaces before all attribute names.
Describe your issue in detail here. Lesson states Add another checkbox after the one you just added. The id
attribute value should be lazy
and the name
attribute value should be the same as the last checkbox.
Also add a label
element to the right of the new checkbox with the text Lazy
. Make sure to associate the label
element with the new checkbox using the for
attribute.
Your code so far
<input id="loving" type="checkbox" name="personality"> <label for="loving">Loving</label>
<input id='Lazy' type="checkbox" name="personality"> <label for="Lazy">Lazy</label>