Aprende HTML creando una Aplicación de Fotos de Gatos - Paso 45

Step 45

label elements are used to help associate the text for an input element with the input element itself (especially for assistive technologies like screen readers). For example, <label><input type="radio"> cat</label> makes it so clicking the word cat also selects the corresponding radio button.

Nest your radio button inside a label element.

La respuesta que tengo:

<label><input type="radio" Indoor> cat</label>

Tu codigo no se esta añadiendo correctamente
utiliza el botón </>
image
y pega tu codigo entre las comillas triples

image
Tambien añade el link del reto

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

this uses “cat” as example label text, but your label text needs to be “Indoor”

remove “Indoor” from there, and place it in place of “cat”

Codigo original:

<input type="radio"> Indoor

Tu codigo:

<label><input type="radio" Indoor> cat</label>

No es necesario mover “Indoor”
y la palabra “cat” solo era una parte del ejemplo

las instrucciones solo piden:

Anida tu radio button dentro de un elemento label.

solo tienes que anidar esto en un label

<input type="radio"> Indoor

te recomiendo resetear tu código para que no tengas problemas del codigo que modificaste