Learn HTML Forms by Building a Registration Form - Step 13

How am i supposed to add three fieldset?

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>

<!-- User Editable Region -->

  <body>
    <h1>Registration Form</h1>
    <p>Please fill out this form with the required information</p>
    <form method="post" action='https://register-demo.freecodecamp.org'>
    
    </form>
  </body>

<!-- User Editable Region -->

</html>
/* file: styles.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36

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

Link to the challenge:

‘fieldset’ is the name of a tag.

If you type any tag name into a search engine along with the language you should be able to find references to what the tag does and where its commonly used.

Try searching: ‘fieldset HTML’

Beginner friendly references are great resources for learning :smiley:

Hello!
You could find out about fieldset tags here:

As always as a beginner and even as the advanced sometimes say google should be your best companion in this journey. However just like some just stated, fieldset is a html tag and I bet you have used it during the Cat photo gallery challenge. so whether it is self-closing or not, it’s now up to you sir to dig that out as it will help it to stick better i your memory.

Finallly another thing i do is to go through all the codes during the courses it helps refresh my memory towards the things I have been taught.
happy coding bro!

The site I posted has been posted by some moderators, too, for tutorials on various coding challenges. The site has great tutorials on most everything we are learning on here.
I will say that I have learned much from all of the Free Code Camp team and community, including some great sites to help learners, of which I am still on that track. :slight_smile:

1 Like

I am also a student of W3schools and I use the platform to lookup some ways of doing things when building my personal projects. However I was only refering him to knowing and understanding the power of google in coding as there are tons of resources that will help him in this journey especially when the going gets tough.
Remain blessed!

1 Like
Summary

The Free Code Camp team and community that helps us along the way deserves recognition. I also often turn to various online resources for tips and solutions when creating my projects. Programming is a continuous learning process. I like having access to a variety of sources of information.

1 Like

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