Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.
Hi all, can someone help i dont understand why my

freeCodeCamp Survey Form

is not passing?

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
  <title id="title">freeCodeCamp Survey Form</title>
  <body>
  <meta charset="UTF-8">
  <link rel="stylesheet" href="styles.css"/>
    <h1 id="title">freeCodeCamp Survey Form</h1>
    <p id="description">Thank you for taking the time to help us improve the platform</p>
    <form id="survey-form">
      <label id="name-label">Enter Your Name Here:
        <input placeholder="eg.Patrick" id="name" type="text"  required></label>
      <label id="email-label">Enter Your Email:
        <input placeholder="eg.patrick@gmail.com" id="email" type="email" required></label>
      <label id="number-label">Enter Your Age Here:
        <input placeholder="eg.23(Optional)" id="number" type="number" min="13" max="120"></label>
        <label>Would you recommend us to friends?</label>
      <select id="dropdown">
        <option>Yes</option>
        <option>No</option>
        <label for="amazing">How was your experience with us?</label>
        <input type="radio" value="amazing" name="amazing-good">Amazing, very creative and easy to learn.</input>
        <input type="radio" value="good" name="amazing-good">Good, but too confusing in some challenges?</input>
        <label>How could we make it more accessible and user friendly?</label>
        <input type="checkbox" value="better">Better explanations?</input>
        <input type="checkbox" value="more">More information?</input>
        <textarea></textarea>
        <input type="submit" id="submit"></input>
      </form>
      </body>
      </head>
/* file: styles.css */

  **Your browser information:**

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

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

the challenge should tell you which tests are not passing.
Do you need help with one specific one? (please clarify your post)

it says that i only fail.

You should have an h1 element with an id of title

your code currently is not properly formed html
as there are a lot of mistakes, my suggestion is to use this tool

and copy your code there , then validate it (fix all the errors you see, and keep running this validator with your updates until it gives a clean no error result).
Hopefully this will help move you forward.

thank you very much appreciated!!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.