Hi, so I'm confuse about nesting the existing input element inside a form element,

Advertisements

This is a practice thing inside freecodecamp.org

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

*** It says that The existing input element should be nested within a form element.***

>Solution :

Seems to be some strange bug going on with it identifying the indentation in your code.

Replace what you’ve got with the below, and it should allow you to continue.

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

Leave a ReplyCancel reply