Hey everyone. Please i need help with step 35

The action attribute i use is not working. Please i need help. Thank you

1 Like

Can you post your code, it Is hard to find your problem without the code.

It would be good If you could post a link too.

2 Likes
<form action="https://freecatphotoapp.com/submit-cat-photo></form action>"
1 Like

That’s the code i wrote but it doesn’t pass. How do I write the correct code? Thank you.

You haven’t closed the quotes properly, and the closing form element doesn’t take attributes.

You have to close the quotes after the action link.

I am so sorry for bugging. But i have tried it as you explained and it still doesn’t pass.

  • You should have only one form element, you can delete the first form element.

  • Closing tags do not take attributes, you have given </form action>,
    always remember that closing elements dont have attributes.

Cryptic_X Kindly help me. at least with a little format of how the code will look like. I have tried countless times to tweak the code but still it doesn’t pass.

Ok, I will give you an example of a form element:

<form action="...">
</form>

Now going back to your code:

<form>
</form>
<form><form action="..."</form>

First of all you will have to delete the extra form elements and then close the opening <form> element.

Note: The ... is just some placeholder value.

All thanks to you. I got it right. Truly grateful

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.