Https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/create-a-form-element

Looks like there’s a bug in the acceptance of code.
specifically in passing this portions.

Seems its an old issue, chrome won’t recognize the action sequence. However you can get past this in incognito mode, or using another browser. There seems to be another issue, It won’t pass saying there isnt a well formed opening and close tab. But clearly it is. Any idea how to get past this?


<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form
action="/submit-cat-photo">
<input type="text" placeholder="cat photo URL">
 </form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:73.0) Gecko/20100101 Firefox/73.0.

Challenge: Create a Form Element

Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/create-a-form-element

Found the solution. While everything is technically correct I think,

the complaint is that there is not a well formed open and close, but the actual fix is to take the code and put the action on the same line.

<form action="/submit-cat-photo>, not sure why, I didn't think whitespace would matter. and actually tabbing it down a line after makes it work, just not the first time. so odd all around.

this is one of those challenges where the tests check what you have written in the console, there seems to be something wrong with the pattern recognition test
Can you open a github issue on this?

Thank you for helping make FCC better. Bugs can be reported as GitHub Issues. Whenever reporting a bug, please check first that there isn’t already an issue for it and provide as much detail as possible.