I dont know what to do please help!

Tell us what’s happening:
Describe your issue in detail here.

  **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://www.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://www.freecatphotoapp.com/submit-cat-photo">
  <label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor" value"indoor"> indoor</label>
  <label for="outdoor"><input id="outdoor" type="radio" name="indoor-outdoor"value"outdoor"> outdoor</label><br>
  <label for="loving"><input id="loving" type="checkbox" name="personality" value"loving"> loving</label>
  <label for="lazy"><input id="lazy" type="checkbox" name="personality" value"lazy">lazy</label>
  <label for="energetic"><input id="energetic"  type="checkbox" name="personality" value"energetic"> 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/92.0.4515.159 Safari/537.36

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

Hi @kyleivan.coc !

I haven’t tested your code but I noticed that you are missing = signs for all of your value attributes.

I just tested your code.

In additions to adding all of those = signs to the value attributes it seems that you changed the text for all of the radio buttons and checkboxes.

The text for all of these needs to start with a capital letter.

You need to fix all of these

Once you fix all of that then the test will pass.

Still the same :frowning: :worried:
already put = and capitalized the first letter

It is always best to write code directly into the forum instead of posting screenshots.

But I think you misunderstood my instructions.

You were only supposed to capitalize the label text

I should have been clearer on that.
You had accidentally changed code you weren’t supposed the first time you posted.

For example, this text

But at this point, I would just reset the lesson because you changed to much of the original code.

Once you reset the lesson, only add the value attributes and nothing else.
Value attributes are in lowercase.

Hope that is clearer now.

it went through . I’m so sorry :frowning:

thank you again. I’m sorry for the screen shot

No worries, you’re good.

Glad you got it working.

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