Learn HTML Forms by Building a Registration Form - Step 13

What should I do to add three fieldset elements with in form element?

form method="post" action='https://register-demo.freecodecamp.org">
<fieldset></fieldset> 
<fieldset></fieldset>
<fieldset></fieldset> 
</form>

Challenge: Learn HTML Forms by Building a Registration Form - Step 13

Link to the challenge:

your form element is missing an angular bracket at the beginning and the action attribute starts with a single quote and ends with a double quote, you can’t mix and match quotes like that

1 Like

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