Tell us what’s happening:
Describe your issue in detail here.
After running my test it states I need at least 2 radio buttons at least. I added a 3rd one and even made a second section with another set of radio buttons. And still reads the same results.
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Survey Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="title">Survey Form</h1>
<p id="description">Please fill out this survey in order to improve your experience.</p>
<form id="survey-form" requierd>
<fieldset>
<label id="name-label">Name:</label><br>
<input id="name" type="text" placeholder="My name is..." required></input><br>
<label id="email-label">Email:</label><br>
<input id="email" type="email" placeholder="my-email@..." required></input><br>
<label id="number-label">Age:</label><br>
<input id="number" type="number" min="13" max="120" placeholder="My age in years..." required></input><br>
</fieldset>
<fieldset>
<label id="how">How did you hear about us?</label>
<select id="dropdown">
<option value="">Select one</option>
<option value="web">Web</option>
<option value="referral">Referral</option>
</select></fieldset>
<fieldset>
<label id="would">Would you recommend our site to your friends?</input>
<input type="radio" name="yes" value="yes">Yes</input>
<input type="radio" name="no" value="no">No</input>
<input type="radio" name="now" value="now">Doing it now!</input>
</fieldset>
<fieldset>
<div><label id="will">Will you visit our site again?</input></div>
<input type="radio" name="maybe" value="maybe">Maybe</input>
<input type="radio" name="definitely" value="definitely">Definitely</input>
<input type="radio" name="absolutely" value="absolutely">Absolutely</input>
</fieldset>
<fieldset>
<div><label id="what"> What would you like to see improve?</label></div>
<input type="checkbox" value="background">Background</input>
<input type="checkbox" value="content">Content</input>
<input type="checkbox" value="forum">Forum</input>
<input type="checkbox" value="challenges">Challenges</input></fieldset>
<fieldset>
<div><label>Additional Comments:</div>
<textarea name="comments" rows="3" cols="30" placeholder="I would like to..."></textarea></label>
<input type="Submit" id="submit" value="Submit">Submit</input>
</fieldset>
</form>
</body>
/* file: styles.css */
form{
background-color:lightblue;
margin-left:0;
margin-right: 0;
margin-top:0;
margin-bottom:0;
border: 2px solid black;
}
h1{
color:purple;
text-align:center;
}
p{
text-align:center;
color:purple;
}
fieldset{
}
**Your browser information:**
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36
Challenge: Survey Form - Build a Survey Form
Link to the challenge: