Survey form task.. email

https://codepen.io/serwadi-farmerman/pen/mdeVGbO?editors=1000

the report says my email and number are not as correct i can see any mistakes kindly check and advice thank you

you have done a mistake in <input> element type="email" not type:“email”

copy this code I’ve made the changes.

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<h1 id="title">Couple Survey </h1>
<br> <br>
<p id="description"> How happy are you with your current partner </p>
<br> <br>
<form  id="survey-form">

  <label for="name" id="name-label">Name:</label>
  <input id="name" type="text"  placeholder="type your name" required>
   <br>
  <label for="number" id="number-label" >Number</label>
<input type="number" id="number" min="7"max="100" placeholder="Enter your age" required>
  <br>
  <label for="email" id="email-label" >Email</label>
  <input type="email" id="email" placeholder="type your Email" required>
  <br> <br>
  
  <select id="dropdown" name="parner satisfaction">
    <option>Not happy</option>
    <option >happy with my decision</option>
    <option >The best</option>
    </select>
  <br> <br> <br>
 
     <input type="radio" name="personality" value="loving">Loving 
     <input type="radio" name="personality" value="moody" >Moody
     <input type="radio" name="personality" value="introvert">Introvert
  <br> <br><br>
  <label for="temperature">
      
      <input type="checkbox" name="temperature" value="style">Style
      <input type="checkbox" name="temperature" value="character">Character
      <input type="checkbox" name="temperature" value="other">Other
  
 </label>
  <br> <br> <br>
  <textarea id="comment" placeholder="say whats on your mind">
    Additional information
  </textarea>
  

  <br><br>
  <button id="submit" type="submit">SUBMIT
</form>

its not working infact its now 13/17 rather than my 15/17

No, it works fine. Remove the HTML tag in codepen