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

shesha sai suri thirunagari
shesha sai suri thirunagari
292 Points

add a submit button to a form

add a submit button to a form

index.html
<!DOCTYPE html>
<html>
  <head>
    <title>HTML Mastery Challenge</title>
  </head>
  <body>
    <div>
      <h2>Shopping List</h2>
      <ol>
        <li>one</li>
        <li>one</li>
        <li>one</li>
      </ol>
    </div>
     <p><strong>Hello World</strong></p>
  <form>
    <fieldset>
      <legend>Hello World</legend>
        <input type="text" name="Hello World" value="Hello World"><br>

      <button type="submit">Submit Comment</button>
    </fieldset>
  </form>

    <h1>HTML Mastery Challenge</h1>

    <!-- Write your code below -->


  </body>
</html>

2 Answers

Hi,

Not sure what the question is but I notice you're writing your code above where it says:

<!-- Write your code below -->

If it isn't working you could try moving it here.

Hope that helps :)

-Rich

i have found what your mistake is when making a button it is not a

<button>

tag. you need to use the

<input>

tag. hope that helps happy coding.