HTML/CSS Accesibility Quiz Step 14

I can’t see what I’m doing wrong here. The action value is the correct link. Does anybody know what I need to fix?

Please post your actual code and a link to the challenge instead of a picture. Thanks

1 Like

Here is a link to the challenge: https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-accessibility-by-building-a-quiz/step-14

Here is my code:

<main>
      <form>
         <section></section>
         <section></section>
         <section></section>
         <input type="submit" action="https://freecodecamp.org/practice-project/accessibility-quiz">
      </form>
    </main>

Pay close attention to the instructions! (: It says the form should submit to that link, so you may want to try placing that action somewhere else.

1 Like

i got irritated by that… just after posting the action attribute in the form! the dialogue arrived… using the correct method! :persevere::persevere::persevere::persevere::persevere::persevere: insane

just put the action and the method inside the <form…
form( method=“” action"" )

1 Like

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

1) HTML element should have an open tag <input> and a closing tag </input>
2) Inside the element, there can exists an attribute, e.g. <input type="submit"></input>
3) Now, <form> needs an attribute to submit which can be done by using the correct method and action