Create a Form Element, Says I have done the objectives except for "Well formed open and close tags" for my form element

Tell us what’s happening:
I can’t tell what I’m supposed to do to fix this. It seems fine to me.

Your code so far


<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:60.0) Gecko/20100101 Firefox/60.0.

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

Your main tag is not closed

Oops! thanks. I fixed that but it still isn’t letting me progress. I need to fix something to do with form but im not sure what.

Although HTML is actually case insensitive, freeCodeCamp (along with conventional usage on most of the modern web) uses all-lower-case tag names (form not Form).

1 Like

This is kind of a wild guess. It could be the mixed case of your form tag. I think that is valid HTML but the tester may be choking on it. I’m not at computer so I can’t really test that theory

This fixed it! Thank you so much for the help everybody!