Error in step 60

<fieldset>
            <legend>Is your cat an indoor or outdoor cat?</legend>
            <label><input id="indoor" type="radio" name="indoor-outdoor" value="indoor"> Indoor</label>
            <label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label>
          </fieldset>
          <fieldset>
            <legend>What's your cat's personality?</legend>
            <input id="loving" type="checkbox" vlaue="loving"     name="personality"> <label for="loving">Loving</label>
            <input id="lazy" type="checkbox" value="lazy" name="personality" > <label for="lazy">Lazy</label>
            <input id="energetic" type="checkbox" value="energetic" name="personality"> <label for="energetic"> Energetic</label>
          </fieldset>


what is the error here

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

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