What I am doing wrong please tester driving me nuts help

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<doctype html>

  <body </body>
    <id=surveyform>
      <header>

        <h1>
          <id="title">
            Survey Form
        </h1>

      </header>

      <section>
        <form>
          <id="survey form">
        </form>
        <id=description>
          <p>What do you use for your coding mojo!! please fill this out that applies to you currently.</p>

          <br><label> <id="name-label">Name:</label>
          <input type="text" id="name" name="name" placeholder="Please Enter your name" required></br>

          <br><label id="email-label">Email:</label>
          <input type="email" id="email" name="email" placeholder="Email Address" required></br>

          <br><label id="number-label">Age:</label>
          <input type="min" id="number" name="max" placeholder="Age" required></br>
          <br><label id="phone-number">Phone:</label>
          <input type="phone number" id="phone number" name="phone number" placeholder=Phone# required></br>
          <div>
            <div>
              <p>Whats your mojo!!?</p>
              <br <label for="listen to music "><input id="listen to music " type="checkbox" "name="listen to music ">listen to music</label></br>
                 <br <label for="play with family pet "><input id="play with family pet "type="checkbox" "name="play with family pet ">play with family pet</label>
              </br> <br><label for="outdoor activity "><input id="outdoor activity
  "type="checkbox" "name="outdoor activity ">outdoor activity</label></br>
              <br><label for="Get a snack "><input id="Get a snack " type="checkbox" "name="get a snack ">get a snack</label></br><br> Please select your place of coding power!!

              <select>
   <option value="select">select</option>
  <option value="coffee cafe">coffee cafe</option>
  <option value="park">park</option>
  <option value="office space">office space</option>
  <option value="bedroom">bedroom</option>
   <option value="other">other</option>
   id=dropdown></br></select>
              <p> How many hours of coding do you do a day?(select only one,be honest please.)</p>
              <input type="radio" name="five hours" value="five hours">five hours<br>
              <input type="radio" name="ten hours" value="ten hours"> ten hours<br>
              <input type="radio" name="what is time anyway" value="what is time anyway"> what is time anyway</br>
              <p> when you take a break from coding how long is the break?</p>
              <select>
   <option value="select">select</option>
  <option value="10 minutes">10 minutes</option>
  <option value="20 minutes">20 minutes</option>
  <option value="30 minutes">30 Minutes</option>
  <option value="40 minutes">40 minutes</option>
   <option value="no alarm nap">no alarm nap</option>
   id=dropdown></br></select>
              <p>What kind of music do you jam to!!(click to all that applies)</p>
              <label for="classic"><input id="classic" type="checkbox" "name="classic">classic </label><label for="rock n' roll"><input id="listen to music " type="checkbox" "name="rock n' roll">rock n' roll music</label><label for="Anime"><input id="Anime" type="checkbox" "name="anime">Anime</label>
              
                <label for="edm/lofi"><input id="edm/lofi " type="checkbox" "name="edm/lofi">edm/lofi</label><label for ="movie osts "><input id=" movie osts" type="checkbox" "name="movie osts "> movie osts</label><label for="jazz "><input id="jazz" type="checkbox" "name="jazz ">jazz</label>
                <label
                  for="blues"><input id="blues" type="checkbox" "name="blues">blues</label>
        <label for ="favorite decade"><input id="favorite decade " type="checkbox" "name="favorite decade">favorite decade</label>
                  <label for="holiday "><input id="holiday " type="checkbox" "name="holiday">holiday</label>

                  </br>
                  <br><textarea>Any comments</textarea></br>

                  <br><button id=submit-type="button">submit </button></br>

Hello, I see some of your tags are not written properly - they should look like <tag></end-tag>.

It’s really hard to read this post, but fix this tag issue first

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.

Note: Backticks are not single quotes.

markdown_Forums

for indications of what’s wrong in codepen you can use “Analyze HTML” and “Analyze CSS” to see if the syntax is correct


this is not how you set an id to an element. this error happens many times in your page

remember that ids needs to be a single word, and can’t include spaces (same for class names)

see this challenges for the id attribute:

fix this and post again your code, or if you have issues ask again