**Tell us what’s happening:**The website is telling me that I need to label my radio buttons. I cannot figure out what I did incorrectly. Here is my code:
"<input id=“outdoor” type=“radio” name=“indoor-outdoor"Outdoor”
this line is wrong, first you don’t need the close tag " in this line, because you already got one in the next line;
second, the “input” tag is wrong, you should always contain both beginning angular bracket and closing angular bracket for every tag. the attributes should be contained inside this two bracket like the id, type and name, but the information you want to be displayed on screen should not be included in, in this case is the word “Outdoor”. so this line should be crrected like this:
delete the label tag and add a closing angular bracket.
you have just <input, you are missing the >, so your </label> tag is not recognized as that closing angular bracket is considered to be for the input element, you need to have that angular bracket
"label" is not a self-closing tag it has a separate closing tag. you have added a backslash (/) after the double quote in label tag’s for attribute i.e. after for=“indoor”. Remove it from there.
You haven’t closed the input tag for the radio options. It should look like below.