Hard to understand this part of my challenge , please i need assistance

Tell us what’s happening:

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="https://freecatphotoapp.com/submit-cat-photo">
  <label for="indoor"><input id="indoor" type="radio" name="1"> indoor</label>
  <label for="outdoor"><input id="outdoor" type="radio" name="2"> Outdoor</label><br>
  <label for="loving"><input id="loving" type="checkbox" name="personality"> "loving"</label>
  <label for="lazy"><input id="lazy" type="checkbox" name="personality"> "lazy"</label>
  <label for="energetic"><input id="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 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 OPR/73.0.3856.344.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

Use the “tell us what’s happening section” to expand on what it is you don’t understand.

The instructions give an example of how to add the value attribute.
You are tasked with adding the value attribute to both of the radio buttons and also to the three checkboxes.
It’s also telling you to set the value attribute to the same text as the label text but in lowercase.

Thanks for your time.

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