Certification Project Survery Form

I’m unsure if I’m misunderstanding this part of the project but it’s the last HTML point that I need to check off. So it states:
“Every radio button group should have at least 2 radio buttons.”

Wouldn’t the 1 group of 3 radio buttons that I have on the HTML code be correct?

<html lang="en">
  <head>
    <link rel="stylesheet" href="styles.css" />
  </head>  
    <body> 
      <h1 id="title">First Project Survery Form</h1>
        <p id="description">Thank you for your feedback</p>
            <form id="survey-form">
              <fieldset>
                <label id="name-label">Name<input id="name" type="text" required placeholder="Enter your full name" /></label>
                <label id="email-label">Email<input id="email" type="email" required placeholder="Enter your email address" /> </label>
                <label id="number-label">Age (optional)<input id="number" type="number" min="18" max="150" placeholder="Age" /> </label>
                </fieldset>
                  <fieldset>
                    <select id="dropdown">
                      <option value=""></option>
                      <option value=""></option>
                      <option value=""></option>
                    </select>
                  </fieldset>
                    <fieldset>
                      <label><input type="radio" value="yes" name="first-option" />Yes</label>
                      <label><input type="radio" value="maybe" name="second-option" />Maybe</label>
                      <label><input type="radio" value="no" name="third-option" />No</label>
                    </fieldset>
                      <fieldset>
                        <label><input type="checkbox" value="good" /></label>
                        <label><input type="checkbox" value="indifferent" /></label>
                        <label><input type="checkbox" value="bad" /></label>
                      </fieldset>
                        <fieldset>
                          <label><textarea></textarea></lable>
                        </fieldset>
                          <fieldset>
                            <button id="submit"></button>
                          </fieldset>
            </form>
    </body>

all the elements in a group have the same name, do yours?

1 Like

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