Survey project story#13 help

Hello fellow coders,

I am running into an issue with not passing story #13. Can someone please let me know what is incorrect in my code? I am still very new to coding, and would appreciate the assist.

          <p><input 
                id="government-class" 
                type="radio" 
                name="galactic-sanctions" 
                value="governmentClass"
                />
                <label for="government-class">Government Class</label></p>
                <p><input 
                id="military-class" 
                type="radio" 
                name="galactic-sanctions" 
                value="militaryClass"
                />
                <label for="military-class">Military Class</label></p>
                <p><input 
                id="civil-class" 
                type="radio" 
                name="galactic-sanctions" 
                value="civilClass"
                />
                <label for="civil-class" name="galactic-sanctions">Civil Class (e.g. police, repair and medical personnel)</label></p>
                <p><input 
                id="civilian-class" 
                type="radio" 
                name="galactic-sanctions" 
                value="civilianClass"
                />
                <label for="civilian-class" name="galactic-sanctions">Civilian Class</label></p>
                <p><input 
                id="s-class" 
                type="radio" 
                name="galactic-sanctions" 
                value="sClass"
                />
                <label for="s-class" name="galactic-sanctions">S-Class</label></p>

Wow… So after pouring over the code it turns out I had my div, fieldset and legend outside of my form element. :rofl:

I appreciate all of those who read this and thought about it at least.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.