Good day: i dont seem to understand what is really wrong with this code(https://codepen.io/freeCodeCamp/pen/MJjpwO). I kept scoring 16/17. please help

Unfortunately, your link brings me to an empty project. Can you put a link that has your code in it?

Sir, this is the link. Thanks for the quick response
(https://codepen.io/freeCodeCamp/pen/MJjpwO)

that’s still the freecodecamp pen

you need to give the link to the pen forked to your account

Thanks for concern. I have posted the code(HTML) here.

<header>
        <h1 id="title">Admission Form</h1>
        <p id="description">
          Please complete the section below in BLOCK LETTERS using black ink.
        </p>
        <br>
        <form id="survey-form">
          <div>
            <br>
            <label for="name" id="name-label">Name</label>
            <input type="text" id="name" name="name" placeholder="Name" required>
          </div>
          <br>
          <div>
            <label for="email" id="email-label">email</label>
            <input type="email" id="email" name="email" placeholder="email" required>
          </div>
          <br>
          <div>
            <label for="number" id="number-label">number</label>
            <input type="number" id="number"name="number" required min="18" max="100"placeholder="number" >
          </div>
          <br>
          <div>
            <label>Gender</label>
            <select id="dropdown" name="Gender" required>
              <option value="male" disabled selected value>male</option>
					<option value="female">female</option>
					<option value="others">others</option>
            </select>
          </div>
          <br>
          <div>
            <label for="radio1">
              <input type="radio" name="title" value="Mr" id="radio1">Mr
            </label>
            <br>
            <label for="radio2">
              <input type="radio" name="title" value="Mrs/Miss" id="radio2">Mrs/Miss
            </label>
          </div>
          <br>
          <div>
            <label for="checkbox1">
              <input type="checkbox" name="qualification" value="M.Sc"id="checkbox1">M.Sc
            </label>
            <br>
            <label for="checkbox2">
              <input type="checkbox" name="qualification" value="Degree" id="checkbox2">Degree
            </label>
            <br>
            <label for="checkbox3">
              <input type="checkbox" name="qualification" value="NCE" id="checkbox3">NCE
             </label>
             </div>
             <div> 
					   <br>
				    <p>Additional comment</p>
				    <textarea name="Additional comment" placeholder="Enter your comment here">      </textarea>
            <br>
            <br>
				
				    <button type="Submit" id="Submit">Submit</button>

				    </div>
        </form>
      </header>
    </body>

remember to fork the project or your work will be lost

can you please provide the link to your project? it’s much easier to debug, as I would need to create a pen myself, copy your code, add the test suite and then look at your code

Look at the error

There should be a button with id=“submit”

Now check your id (hint: it is case sensitive).

Thanks alot. I really appreciate your concern. Your team is wonderful.