Help! 16/17 on Survey Form

Hello!

I just finished writing out my HTML for the survey form. Made sure to check off all the user stories as I go and still got a 16/17. Made sure to double-check my work 2-3 more times and still can’t figure out what’s wrong. Could anyone help me see what I’m missing or need to fix to help this project pass? General feedback is welcome also!

Here is the codepen link:

Thanks in advance :slight_smile:

HI @kati.majorealey !

Welcome to the forum!

When working on projects you have to make sure to read the entire error message.
It provides hints on how to fix the issue.

Here is the error message
Inside the form element, I am presented with a button with id=“submit” to submit all my inputs.
Your button’s type attribute should have a value of “submit” : expected ‘button’ to equal ‘submit’

But you wrote this instead

  <div class="submit">
      <button type="button" id="submit">Submit</button>
    </div>

Hope that helps!

Thank you for your response and feedback! After going thru my code again after posting, I finally noticed that error and quickly made the change. So silly to know something so simple could throw everything off lol but thanks again for you help!

1 Like

Small errors trip all of us up.

Glad you were able to figure it out :slight_smile:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.