Can't get past basic HTML : create un text field

**Tell us what’s happening:**This code register a mistake once I run the text. “You’re app should have an input element of type texte”. The thing is, the text field IS appearing on the app. I don’t know what’s going on.
If you would be so kind as to double check where I have made a mistake :3

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>
<input type="texte"


</main>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:74.0) Gecko/20100101 Firefox/74.0.

Challenge: Create a Text Field

Link to the challenge:

You have done a mistake in the spelling.
It’s ```

Sorry I’m not sure I understand. The quotes are a problem ?

Hey buddy you have typo mistake and didnt closed your tag:

<input type="text-field">
  • The type is not supposed to be “texte”. Read the instructions carefully.
  • The tag for the input element is not complete.

Hey man ! Thanks for answering. This line you gave me is not working either.
Cheers and take care !

Hey ! Thanks for taking the time ! <input type="text"> this is the example I have been given though. SO i’m not sure I undertsand.
Best regards

“text” is not the same thing as “texte”.

Take a look at the input tag, it’s not closed.

You have to put it exactly like this: . You spelled text wrong as you put “texte” also you didn’t close the tag with “>” since it’s an input tag you don’t need to use the “/>” closing tag.