Basic HTML and HTML5: Create a Form Element HELP?

I have tried different things and I still cannot figure it out, it has been two day

    <input type="text" placeholder="cat photo URL"<form action="https://freecatphotoapp.com/submit-cat-photo"</form>

I am supposed to nest the existing input element inside a form element and assign "https://freecatphotoapp.com/submit-cat-photo" to the action attribute of the form element.



**Your browser information:**

User Agent is: <code>Mozilla/5.0 (X11; CrOS x86_64 13310.93.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.133 Safari/537.36</code>.

**Challenge:** Create a Form Element

**Link to the challenge:**
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/create-a-form-element

what’s your code? what have you tried?

Hello @Taylor_Taye. If I’m understanding your post correctly I think I can help out.
Looks like you’re confusing what is being asked about nesting. You don’t nest your form tags in the actual input tag itself. You place the input tag inside the form tag.

Also, when “nesting” tags you don’t place tags within the <> tag brackets. Here is an example of what nesting tags would look like:

<tag>
     <nested_tag>
          <nested_nested_tag>
               etc...
          </nested_nested_tag>
     </nested_tag>
</tag>

Here is another example that may help you out too to visualize this:

<tag>
     <inline_nested_tag />
     <another_nested_tag>
          etc....
     </another_nested_tag>
</tag>

Give that shot and see if that helps you with this code challenge.

Edit: Forgot to close the inline-tag.