This is where I’m up to in the code
Cat Form
<input type="radio"> Indoor
<button type="submit">Submit</button>
This is where I’m up to in the code
<input type="radio"> Indoor
<button type="submit">Submit</button>
I would suggest 1st ask google and do your own research, last option is to ask for external help. ( this is the good practice which is followed in Industry as well )
Google “how to add radio type input in html”
Do check https://www.youtube.com/watch?v=cEBkvm0-rg0&t=7s&ab_channel=Fireship
Hello and Welcome to the FCC Forum!
Your input element looks correct. You’ve added type="radio"
attribute which is also correct. However, you need a label element for this input. A label element connects the text in this case “Indoor” to your input. You might have added the label element but it doesn’t appear here because you haven’t shared your full code.
A label element connecting the text to an input looks like this:
<label><input type="radio"> Your text</label>
Hope this helps!
Welcome to the forum @JayJays
Is this from the CatPhotoApp
practice project?
If so, can you tell the forum the step number for it?
Happy coding
Hello, The Step number is 46
If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.
The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
Thank you.
Hi @JayJays
It looks like your code is missing the text input
for the cat photo url.
Please reset the step to restore the original code and try again.
Happy coding