Form open and closed tag

<form action="https://www.freecatphotoapp.com/submit-cat-photo"

I got the two right but unable to get the last which is" open and close form tag right"
Your form element should have well-formed open and close tags.

Please help!

It really helps to see all your code. When first asking a question use the ‘Ask For Help’ button which will create the topic in the correct forum, show your code, provide a link to the lesson and give you the chance to ask your question.

From what you’ve provided;
<form action="https://www.freecatphotoapp.com/submit-cat-photo"
is missing the closing >

We cannot tell what else is wrong without seeing all of your code.


When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Hello @jasjasjo88,

@Roma already point an issue and suggested you to share your code for that we can provide a better help. A link to the challenge would be good too. According to the message you seem to have, I suggest you to watch the course and watch the syntax of the form tags. There is an open tag and closing tag, which seem to be missing in your code.

Example:

<form> <!-- Open tag -->
  <!-- the code inside the form tag -->
</form> <!-- Closing tag -->

I don’t know how to help more from here.

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