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="/submit-cat-photo">
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
<p><b>indoor-outdoor</b></p>
<label>
<input type="radio"
name="indoor-otudoor">indoor</label>
<label><input type ="radio" name="indoor-outdoor">outdoor</label>
</form>
</main>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36.
Link to the challenge:
Hey! Can you tell us more so we can help you with something specific? What do you need help with?
You have a typo on your radio button name for “indoor”. It should be “indoor-outdoor”.
my test 2 test case is not passed . and telling me that- Give your radio buttons the name attribute of indoor-outdoor.
didn’t understand what you trying to say.
Look towards the bottom of your code for this line. You have name=“indoor-otudoor”.
Try the following changes to your code:
<label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor"> Indoor</label>
<label for="outdoor"><input id="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label>
bro could you help me they keep saying that
Give your radio buttons the name attribute of indoor-outdoor
ILM
11
use the Ask for Help button, in this way you will have a post with your code. Remember to compile the “tell us what’s happening”!
without your code it is not possible to help you
Just correct the spelling of outdoor.
<input type="radio" name="indoor-outdoor">indoor</label>
Hi,
You have typo at first radio button in name attribute