Learn Accessibility by Building a Quiz - Step 14

Step 14

As this is a quiz, you will need a form for users to submit answers. You can semantically separate the content within the form using section elements.

Within the main element, create a form with three nested section elements. Then, make the form submit to https://freecodecamp.org/practice-project/accessibility-quiz, using the correct method.

My code so far

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

help
I’m stuck
code isn’t passing

You will need to edit your post to include the link to the challenge, and more of your code. Right now theres no way we can help because all we can see of your code is that you are using a form. We also cant see what the requirements are so we cant guide you on what you should fix.

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

remove this line entirely as it is not correct html.
Then click on the Check button and review the hint.
It will guide you to add something to the form opening tag.

Method & Action should be inside the <form …> and not outside the element.
correct answer will look like this
Mod edit: solution redacted

ALL YOUR REST OF CODE

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.

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