Learn HTML by Building a Cat Photo App - Step 46

i have to create a second button below the first one.
hint says:
“Your new radio button should have an id attribute. Check that there is a space after the opening tag’s name and/or there are spaces before all attribute names.”

someone pls tell me how to fix it.
thank you :slight_smile:

  **Your code so far**

  <h2>Cat Form</h2>
  <form action="https://freecatphotoapp.com/submit-cat-photo">
    <label><input id="indoor" type="radio">Indoor</label>
    <input type="text" name="catphotourl" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
  <form>
    <label><input type="radio" id="outdoor">Outdoor</label>  
    <input type="text" required>       
    <button type="submit">Submit</button>
  </form>
</section>
```

Challenge: Learn HTML by Building a Cat Photo App - Step 46

helpp, i want to move on :b.

i have tried what other people have suggested, like the lowercase/uppercase, i restarted the problem, copy pasted, changed the order of the elements…
literally nothing works…
it looks exactly like the other button, i can even interact with it and it works properly.
idk what else to try

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