Checkbox value error?

Tell us what’s happening:
Describe your issue in detail here.

Everything looks good, but i keep getting this message, " All your radio buttons should have a value attribute and value." Can someone take a look and tell me what I’m missing?

  **Your code so far**
/* file: index.html */
<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 <input id="name" type="text" placeholder="Enter your name" required></label>
<br />
<label id="email-label">Email <input id="email" type="email" placeholder="Enter your email"required></label>
<br />
<label id="number-label">Age <input id="number" type="number" min="13" max="120" placeholder="Age" required></label>
<br />
<label>Which option best describes your current role? <select id="dropdown">
  <option>Select current role</option>
  <option>Student</option>
  <option>Full Time Job</option>
  <option>Full Time Learner</option>
  <option>Prefer not to say</option>
  <option>Other</option>
  </select>
</label>
<br />
<label>Would you recommend freeCodeCamp to a friend?
</label>
<br />
<label><input type="radio" name="recommend">Definitely</label>
<br />
<label><input type="radio" name="recommend">Maybe</label>
<br />
<label><input type="radio" name="recommend">Not sure</label>
<br />
<label>What would you like to see improved?</label>
<br />
<label><input type="checkbox" value="1" id="front">Front-end Projects</label>
<br />
<label><input type="checkbox" value="2" id="back">Back-end Projects</label>
<br />
<label><input type="checkbox" value="3">Data Visualization</label>
<br />
<label><input type="checkbox" value="4">Challenges</label>
<br />
<label><input type="checkbox" value="5">Open Source Community</label>
<br />
<label><input type="checkbox" value="6">Gitter help rooms</label>
<br />
<label><input type="checkbox" value="7">Videos</label>
<br />
<label><input type="checkbox" value="8">City Meetups</label>
<br />
<label><input type="checkbox" value="9">Wiki</label>
<br />
<label><input type="checkbox" value="10">Forum</label>
<br />
<label><input type="checkbox" value="11">Additional Courses</label>
<br />
<label>Any comments or suggestions?<br />
<textarea placeholder="Enter your comment here..."></textarea>
</label>
<br />
<button id="submit">Submit</button
</form>
/* file: styles.css */

  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Your value attribute will be similar to what you have shown for your checkboxes.

Still not working. Please help.

<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 <input id="name" type="text" placeholder="Enter your name" required></label>
  <br />
  <label id="email-label">Email <input id="email" type="email" placeholder="Enter your email"required></label>
  <br />
  <label id="number-label">Age <input id="number" type="number" min="13" max="120" placeholder="Age" required></label>
  <br />
  <label>Which option best describes your current role? <select id="dropdown">
    <option>Select current role</option>
    <option>Student</option>
    <option>Full Time Job</option>
    <option>Full Time Learner</option>
    <option>Prefer not to say</option>
    <option>Other</option>
    </select>
  </label>
  <br />
  <label>Would you recommend freeCodeCamp to a friend?
  </label>
  <br />
  <label><input id="definitely" type="radio" name="recommend" value="12">Definitely</label>
  <br />
  <label><input id="maybe" type="radio" name="recommend" value="13">Maybe</label>
  <br />
  <label><input id="not-sure" type="radio" name="recommend" vlue="14">Not sure</label>
  <br />
  <label>What would you like to see improved?</label>
  <br />
  <label><input type="checkbox" value="1" id="front">Front-end Projects</label>
  <br />
  <label><input type="checkbox" value="2" id="back">Back-end Projects</label>
  <br />
  <label><input type="checkbox" value="3">Data Visualization</label>
  <br />
  <label><input type="checkbox" value="4">Challenges</label>
  <br />
  <label><input type="checkbox" value="5">Open Source Community</label>
  <br />
  <label><input type="checkbox" value="6">Gitter help rooms</label>
  <br />
  <label><input type="checkbox" value="7">Videos</label>
  <br />
  <label><input type="checkbox" value="8">City Meetups</label>
  <br />
  <label><input type="checkbox" value="9">Wiki</label>
  <br />
  <label><input type="checkbox" value="10">Forum</label>
  <br />
  <label><input type="checkbox" value="11">Additional Courses</label>
  <br />
  <label>Any comments or suggestions?<br />
  <textarea placeholder="Enter your comment here..."></textarea>
  </label>
  <br />
  <button id="submit">Submit</button
  </form>

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