Create a Form Element<

I just want to help to understand how to plot and finish this current challenge.
The image below shows the input being plotted within the form element. I was trying to understand which “input” I had to plot within the form and I forget that I had made one on the bottom of the website.

So, here is the example:

The wording of the challenge is a little confusing for sure. What it’s asking you to do is nest the <input> tag inside the <form> tag like so:

  <form action="/submit-cat-photo">
  <input type="text" placeholder="cat photo URL">
  </form>

Notice that the form tag does not include an input type. In your example above, remove the input type from the form tag.

1 Like