Nest text inside forum

Stuck on nesting text inside forum.
Nest your text field inside a form element, and add the action="https://freecatphotoapp.com/submit-cat-photo" attribute to the form element.

Is this wrong?
Code - (form action=“https://freecatphotoapp.com/submit-cat-photo”></form)

Hi @Ronaldnazaro,

You have to put input text inside your form tag as per the exercise –
For example;
<form><input type="text"></form>
Currently it seems like there is just form tag without anything nested in it.

Thank you, either way I separate the form and input for ex:
-form> -input type=“text”> -/form> or
-form>
-input type=“text”>
-/form>)
test shows not nested

Hi @Ronaldnazaro,

Could you paste your entire code here ? Please make sure to paste the code inside back ticks ``

I have corrected it, I see now within the form I included the attribute however left out the input type, bit of a stumble. Thank you

Sounds good. Welcome

1 Like

So this is your start code:

<input type="text" placeholder="cat photo URL">

The first step is Your text input element should be nested within ...

Nesting means:

<outer>
  <input type="text" placeholder="cat photo URL">
</outer>

The second step is Your form should have an action attribute which is set to X

Adding an action attribute means:

<outer action="X">
  ...
</outer>