Is this lesson Broken?

Tell us what’s happening:
This is the Lesson title for anyone wondering

Basic HTML and HTML5: Use the value attribute with Radio Buttons and Checkboxes

I think this Lesson is broken because I keep typing in:

<label for="Energetic"<input id= "Energetic" value="Energetic" type="checkbox" name="personality">Energetic</label>

and rinse and repeat for loving, lazy, etc, For some reason, it works for outdoors and indoors and this is the only lesson that isn’t working, I’ve completed the rest but this is the only one I haven’t completed and its extremely easy, is it a glitch or problem with the site?

Your code so far


<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="/submit-cat-photo">
  <label><input type="radio" name="indoor-outdoor"> Indoor</label>

  <label><input type="radio" name="indoor-outdoor"> Outdoor</label>
  <br>
  <label><input type="checkbox" name="personality"> Loving</label>

  <label><input type="checkbox" name="personality"> Lazy</label>

  <label for="energetic"><input id="energetic"
  value="energetic" type="checkbox" name="personality"> energetic</label><br>

  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

The full code that you posted doesn’t have any value attributes, except for the “Energetic” checkbox. So we can’t really see what you are trying.

If you were doing this exactly:

<label for="Energetic"<input id= "Energetic" value="Energetic" type="checkbox" name="personality">Energetic</label>

then your problem is the capitalization. But you are also missing a > for the label tag.

For the “Energetic” checkbox you did the value attribute correctly, but changed the text of the label from “Energetic” to “energetic”. That affects the test too.

<label for="energetic"><input id="energetic"
  value="energetic" type="checkbox" name="personality"> energetic</label><br>