Survey Form - Build a Survey Form

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

Your code so far

<!-- file: index.html -->
<DOCTYPE html>
  <html lang="en">
    <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width", initial-scale="1.0"/>
      <title>Survey Form</title>
      <link href="styles.css" rel="stylesheet">
      </head>
      <body> 
        <h1 id="title">Survey Form for freeCodeCamp</h1>
        <p id="description"> This form is meant to collect information from users of the web training </p>
        <form id="survey-form" method="post">
          <label for="name"> <input id="name" type="text" placeholder="Enter your name" required /></label>
          <label for="email"> <input id="email" type="email" placeholder="Enter your email" required /></label>
        <label for="name-label"> Label for name input <input id="name-label" /></label>
        <label for="email-label"> Label for email input <input id="email-label" /></label>
        <label for="number-label"> Label for number input <input id="number-label" /> </label>
          <label for="number"> <input id="number" type="number" min="20" max="100" placeholder="Enter your number" /></label>
<select id="dropdown">
  <option value="1"> option 1 </option>
  <option value="2"> Option 2 </option>
  </select>
<label for="value"> <input id="checkboxes" type="checkbox" name="checkbox" value="1"> checkbox 1 </label>
<label for="value"> <input id="checkboxes" type="checkbox" name="checkbox" value="2"> checkbox 2</label>
<label for="value"> <input name="checkbox" type="checkbox" name="checkbox" value="3"> checkbox 3 </label>
<label for="radio"> <input id="radio" type="radio" value="1" name="radio" /><label>
  <label for="radio"> <input id="radio" type="radio" value="2" name="radio" /><label>
<label for="comments">
<textarea id="comments" name="comments" rows="4" cols="40" placeholder="Type your comment here"/></textarea> </label>
<input type="submit" value="submit" id="submit">
</form>
</body>
</html>
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; rv:109.0) Gecko/20100101 Firefox/115.0

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Welcome to FCC Forum and community!
Please tell us in your own words what problems you are encountering with your code. Any error messages you are receiving. This way the community can offer proper and focused guidance.
You are doing great!
Happy coding!