Build a Survey Form - Build a Survey Form

Tell us what’s happening:

stuck here , build a review form, what do i do now?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Survey Form</title>
  </head>

  <body>
    <header>
      <h1 id="title"> The Review Form of X</h1>
      <p id="description">I do not like Elon Musk therefore I do not like X, the platform. How about you? Have you ever used it? 
        </p>
      </header>
      <main>
        <form id="survey-form">
          <fieldset>
            <legend>Name</legend>
            <form action="freecodecamp.org">
            <label> Full Name (required):</label>
            <input type="text" placeholder="e.g., John Doe" required id="name"/>
            <label for="text" id="name-label/>
            </label>
            </form>
            </fieldset>

            <fieldset>
              <legend>Email</legend>
              <form action="freecodecamp.org">
<label for="email>">Email Address:</label>
            <input type="type="email"id="email" 
              placeholder="example@email.com" 
               required/>
               </form>
              <label for ="text"id="email-label"/>
              <label for="yes-option">Yes</label>
              <input id="yes-option" type="radio" name="platform-used"value="yes"/>
              <label for="no-option">No</label>
              <input id="no-option" type="radio"name="platform-used"value="no"/>

              </fieldset>
              <fieldset>
              
              <legend>Number</legend>
            
          <label>Number</label>
            <input type="number"id="number"name="name" minlenght="10" maxlenght="10" required min="10" max="10"/>
            <label for="number" id="number-label"/>
          
          
           
          </fieldset>

          </form>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0

Challenge Information:

Build a Survey Form - Build a Survey Form

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-survey-form/587d78af367417b2b2512b03.md at main · freeCodeCamp/freeCodeCamp · GitHub

Hi @d7310620-hash,

I suggest starting with the first user story to make sure you have implemented each one as asked.

Do not add anything you were not asked to add.

Make sure you separate attribute/value pairs with a space.

Make sure your attribute values are enclosed in double quotes.

Brackets should only be used to open and close a tag.

If you’re unsure of something, like how to associate a label with an input field, review the theory lecture that explains that.

Happy coding