Learn HTML by Building a Cat Photo App - Step 49

Tell us what’s happening:

Step 49/Line 38 - I have checked on the forums for a hint and have entered the line as suggested - also tried nesting it under label on a new line and as you see it now on a single line. Checked formatting/syntax, Capitalization, spelling and spacing and all seems correct, but I know nothing, a complete novice.
Please assist?

Your code so far

      <label><input id="indoor" type="radio"> Indoor</label>
      <label><input id="Outdoor" type="radio"> outdoor</label>
      <input type="text" name="catphotourl" placeholder="cat photo URL" required>
      <button type="submit">Submit</button>
    </form>
  </section>
</main>
```

Your browser information:

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

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 49

Welcome to the forum @LernyBoBurny

Match the capitalisation of the id attribute value and the text of the second input element to the first input element.

Happy coding

1 Like

Capitalization error. The id and value is swapped for outdoor.

3 Likes