Build a Survey Form - Build a Survey Form

Tell us what’s happening:

What am I doing wrong? Lorem Ipsum I like you cakes woman flang dango janmg.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Job Application</title>
  </head>

  <body>
    <h1 id="title">Job Application</h1>
    <p id="description">
    Description paragraph goes here.
    </p>
    
    <form id="survey-form">
      <fieldset>
        <label
          for="name"
          id="name-label"/>
          Name
        </label></br>
        <input
          id="name"
          type="text"
          placeholder="Full Name"
          name="text"
          required/>
        </br>
      
        <label
          id="email-label"
          type>
          Email
        </label></br>
        <input
          name="email"
          type="email"
          id="email"
          placeholder="Example@email.com"
          required />
        </br>

        <label
          id="number-label">
          Age (optional)
        </label></br>
        <input
          id="number"
          type="number"
          min="1"
          placeholder="Age"
          max="120"/>
        <br>

        <label
          id="dropdown-box-label">
          Education
        </label></br>
        <select id="dropdown">
          <option
            name="highschool">
            High School
          </option>
          <option
            name="ged">
            GED
          </option>
          <option
            name="other">
            Other
          </option>
        </select></br>
      
        <fieldset id="desired-schedule">
          <legend>
            Desired Schedule
          </legend>
      
          <input
            id="part-time"
            type="radio"
            value="radio" 
            name="desired-schedule"/>
          <label
            id="part-time">
            Part-Time
          </label></br>

          <input
            type="radio"
            value="radio" 
            name="desired-schedule"/>
          <label
            id="full-time">
            Full-Time
          </label>
        </fieldset></br>

        <fieldset id="checkbox">
          <legend>
            How did you hear about us?
          </legend>
         
          <input
            type="checkbox"
            value="checkbox">
          <label 
            name="ads">
            Advertisement
          </label>
          </br>

          <input
            type="checkbox" 
            value="checkbox">
          <label
            name="friend">
            Friend
          </label>
          </br>
          <textarea></textarea></br>
        </fieldset></br>

        <input
          id="submit"
          type="submit"/>
      </fieldset>

    </form>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0

Challenge Information:

Build a Survey Form - Build a Survey Form

Welcome to the forum @Super_User

Your solution works from my end. Please try one of the following steps to move forward.

Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.

or - Try the step in incognito or private mode.

or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

or - Ensure your browser is up-to-date or try a different browser.

I hope one of these will work for you.

Happy coding