Hello!
I’ve passed all the other tests except “Every radio button group should have at least 2 radio buttons” and I just can’t figure out where I’m going wrong. Am I using the wrong type of grouping? Should I not being using fieldsets to group them? Any help/explanation would be much appreciated!
This is what my code looks like:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> freeCodeCamp Survey Form </title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="title"> freeCodeCamp Survey Form </h1>
<p id="description"> Thank you for taking the time to help us improve the platform </p>
<form id="survey-form" action="https://survey-form.freecodecamp.rocks">
<fieldset>
<label id="name-label"> Name </label>
<input id="name" type="text" required placeholder="Enter your name">
<label id="email-label"> Email </label>
<input id="email" type="email" required placeholder="Enter your email">
<label id="number-label"> Age </label>
<input id="number" type="number" min="1" max="10" placeholder="Age">
</fieldset>
<fieldset>
<label> Which option best describes your current role?
<select id="dropdown">
<option value=""> Select current role </option>
<option value="1"> Student </option>
<option value="2"> Full time job </option>
<option value="3"> Full time learner </option>
<option value="4"> Other </option>
</label>
</fieldset>
<fieldset>
<label> Would you recommend freeCodeCamp to a friend?
<label><input type="radio" value="1" name="Definetly"> Definetly</label>
<label><input type="radio" value="2" name="Maybe"> Maybe</label>
<label><input type="radio" value="3" name="Not sure"> Not sure</label>
</label>
</fieldset>
<fieldset>
<label> What would you like to see improved?
<label><input type="checkbox" value="1"> Front-End Projects </label>
<label><input type="checkbox" value="2"> Back-End Projects </label>
<label><input type="checkbox" value="3"> Data Visualisation </label>
<label><input type="checkbox" value="4"> Challenges </label>
<label><input type="checkbox" value="5"> Open Source Community </label>
<label><input type="checkbox" value="6"> Glitter help rooms </label>
</label>
<label> Any comments or suggestions?
<textarea placeholder="Enter your comment here"></textarea>
</fieldset>
<fieldset>
</label>
<input type="submit" id="submit"></input>
</fieldset>
</body>
</html>
/* file: styles.css */
Thanks in advance!