Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML HTML Forms HTML Mastery

Can someone please explain to me what I am missing here? It keeps telling me I may need to add another input...

This is number 8 of 8 on the last quiz.

index.html
<!DOCTYPE html>
<html>
  <head>
    <title>HTML Mastery Challenge</title>
  </head>
  <body>

    <h1>HTML Mastery Challenge</h1>

    <!-- Write your code below -->
    <form>
      <input type="text" name="Hello World" value="Hello World" id="Hello World">
    <div>
      <p><strong>Heather's Shopping List</strong></p>
      <h2>Shopping List</h2>
      <ol>
        <li>Milk</li>
        <li>Bread</li>
        <li>Butter</li>         
      </ol>
      <input type="Sumbit" value="Submit">

    </div>
    </form>
  </body>
</html>

2 Answers

Erik McClintock
Erik McClintock
45,783 Points

Heather,

In these situations, the easiest and most common mistakes to make are syntax and spelling type errors. In this case, we have a spelling error (and possibly capitalization).

In your submit button, you have the type set to "Sumbit". Make the "s" lowercase, and spell the word correctly, and you should pass just fine!

Erik

Woops! Thanks so much! I can't believe I missed that!