Stuck here "Make sure your form element has well-formed open and close tags"

This is my code below.: Please help with debugging.:

please right click and get the source code. The error is in the title here it is again:“Make sure your form element has well-formed open and close tags”

Unfortunately we cannot see the code…

I sent an email to you with, my code

Sorry, I haven’t received anything. Can you try to include the code here? Make sure you use back-ticks
before and after your code so it shows up properly (3 back-ticks in a row before and after the code seems to do the trick)

Most HTML elements require open and close tags like this:

<TAG-NAME> <-- open tag
all other stuff inside your tag
</TAG-NAME> <–close tag

If you make some small mistake or typo and deviate from the above pattern, then the tags are not well-formed. So look through your code, and make sure that the open and close tags look just like the example above (with ‘form’ in place of ‘TAG-NAME’, of course).