I did exactly what i'm suppose to do but it keeps reading erros when i run the test?..what do i do pls

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

  **Your code so far**
      <label>
  <input id="indoor" type="radio" name="indoor-outdoor">
  <label for "indoor">Indoor</label>
  <input id="outdoor" type "radio" name="outdoor-indoor">
</label>
html

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

<a href="#"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" 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">
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
<label>
  <input id="indoor" type="radio" name="indoor-outdoor">
  <label for "indoor">Indoor</label>
  <input id="outdoor" type "radio" name="outdoor-indoor">
</label>
</main>
  **Your browser information:**

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

Challenge: Create a Set of Radio Buttons

Link to the challenge:

Hi ! I would suggest sending the code so it would be easier to understand .
If you need to create radio buttons, u need to wrap it in this format

<label for="labelid">
     <input id="labelid" type="radio" name="some-name">My Label
</label>

{This is just an example}

@Exotic
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

You can post solutions that invite discussion (like asking how the solution works, or asking about certain parts of the solution). But please don’t just post your solution for the sake of sharing it.
If you post a full passing solution to a challenge and have questions about it, please surround it with [spoiler] and [/spoiler] tags on the line above and below your solution code.

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

@olushegxzy, while it won’t fail the tests you’ll want to have the radio buttons you create within the form element.

You haven’t done exactly what you were tasked with.

  1. both radio buttons should have the same value in the name attribute. do not switch them around
  2. the second radio button does not have a starting label tag.

It would be best to use the ‘Reset All Code’ button and start the lesson again. Pay close attention to the instructions following the example as needed.

Hope that helps.

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