One lesson on HTML-CSS seems to have a bug

Tell us what’s happening:

Your code so far


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

Your browser information:

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

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/use-the-value-attribute-with-radio-buttons-and-checkboxes

this is my code:

Outdoor Indoor Outdoor Loving lazy Energetic

Everething works but not the line which contains: lazy.
Is there anything wrong in that line or is the site that is buging ^

the label text should be capitalized

  <label for="lazy">
     <input id="lazy" value="lazy" type="checkbox" name="lazy">
-    lazy
+    Lazy  
  </label>
1 Like

You right, thank you !