Hey all, I am completing the certification project and I have included all that is required but the system is not reading my radio button group, I am not sure if it’s something in the code or if it’s the website. The code that is not being read is in bold (**).
**Your code so far**
/* file: index.html */
<main>
<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">
<label id="name-label"> Name </label>
<input id="name" type="text" placeholder="Insert Your Name" required/>
<br>
<label id="email-label"> Email </label>
<input id="email" type="email" placeholder="Insert Your Email" required/>
</br><br>
<label id="number-label"> Age </label>
<input id="number" type="number" placeholder="Insert A Number" min="0" max="90" />
</br><br>
<label> Which option best describes your current role?
</br>
<select id="dropdown" type="dropdown">
<option id="Student">Student</option>
<option id="Full-time job">Full-time job</option>
<option id="Part-time job">Part-time job</option>
<option id="Prefer not to say">Prefer not to say</option>
<option id="Other">Other</option>
</select>
<label>
<br>
<label> Would you recomment freeCodeCamp to a friend?
</br>
**<label>**
**<br>**
**<input type="radio" name="Definetly" for="Definetly" value="Definetly"> Definetly </input>**
**</br>**
**<br>**
**<input type="radio" name="Maybe" for="Maybe" value="Maybe"> Maybe</input>**
**</br>**
**<br>**
**<input type="radio" name="Not sure" for="Not sure" value="Not sure"> Not sure</input> **
**</br>**
**</label>**
<br>
<label> What would you like to see improved? (Check all that apply)</label>
</br>
<br>
<label for="Front-end Projects"><input id="Front-end Projects" type="checkbox" name="opinion" value="Front-end Projects"> Front-end Projects</label>
</br><br>
<label for="Data-end Projects"><input id="Data-end Projects" type="checkbox" name="opinion" value="Data-end Projects"> Data-end Projects</label>
</br><br>
<label for="Data Visualization"><input id="Data Visualization" type="checkbox" name="opinion" value="Data Visualization"> Data Visualization</label>
</br><br>
<label for="Challenges"><input id="Challenges" type="checkbox" name="opinion" value="Challenges"> Challenges</label>
</br><br>
<label for="Open Source Community"><input id="Open Source Community" type="checkbox" name="opinion" value="Open Source"> Open Source Community</label>
</br><br>
<label for="Gitter help rooms"><input id="Gitter help rooms" type="checkbox" name="opinion" value="Gitter help rooms"> Gitter help rooms</label>
</br><br>
<label for="Videos"><input id="Videos" type="checkbox" name="opinion" value="Videos"> Videos</label>
</br><br>
<label for="City Meetups"><input id="City Meetups" type="checkbox" name="opinion" value="City Meetups"> City Meetups</label>
</br><br>
<label for="Wiki"><input id="Wiki" type="checkbox" name="opinion" value="Wiki"> Wiki</label>
</br><br>
<label for="Forum"><input id="Forum" type="checkbox" name="opinion" value="Forum"> Forum</label>
</br><br>
<label for="Additional Courses"><input id="Additional Courses" type="checkbox" name="opinion" value="Additional Courses"> Additional Courses</label>
</br>
<br>
<label>Any comments or suggestions?</label>
<textarea id="textarea">Enter your comment here...</textarea>
</br>
<button id="submit" type="submit">submit</button>
</form>
</main>
/* file: styles.css */
**Your browser information:**
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15
Challenge: Responsive Web Design Projects - Build a Survey Form
Link to the challenge: