Help with "Basic HTML and HTML5: Create a Form Element"

It keeps on saying that, " The existing input element should be nested within a form element."

<form action= "https://freecatphotoapp.com/submit-cat-photo">
<input type="text" "cat photo url">
</form>
I am not sure what I am doing wrong here.

Hello! welcome to the forum, it seems like you’re missing the placeholder attribute in the input, you have:

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

When it should be:

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

Also notice how in your code you have “cat photo url” when it should be “cat photo URL”, it may sound silly but looks like the challenge is case sensitive :sweat_smile: hope this helps you, keep up the good work.

2 Likes

Thank you so much it was case sensitive.

1 Like