Survey Form - Build a Survey Form

Hello Friends, I am getting an error in my code from Survey Form That is " Your #title should not be empty." and second one is " Your #email-label should contain text that describes the input." Need a help…
Describe your issue in detail here.

Your code so far

<!-- file: index.html -->
<html>
  <head>
  <title>
      Survey Form
  </title>
  </head>
  <body>
    <h1 id="title">
      <title>#Survey Form</title>
    </h1>
    <p id="description">I am very thankful to Freecodecamp team who make this webstie for learning the coding</p>
    <form id="survey-form">
     Name:<label id="name-label"> <input required="Enter your Name" id="name" type="text" placeholder="Enter your Name"></label>
Email:<label id="email-label"><input required="Enter your Email" id="email" placeholder="Enter your Email" type="email"></label>

      <label id="number-label"><input required id="number" type="number" min="0" max="10" placeholder="Enter the  Minimum Number"></label>
      </label>
      <select id="dropdown">
         <option>
          Name
        </option>
        <option>
          Name
        </option>
        <button><input type="radio" value="value" name="value"></button>
        <button ><input type="radio" value="value" name="value"></button>
       
        <input type="checkbox" value="value">
        <input type="checkbox" value="value">
        <textarea>

        </textarea>
        <input id="submit" type="submit">
        
        
      </select>
      

    </form>

  </body>
</html>


/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0

Challenge Information:

Survey Form - Build a Survey

Hi @qurbanbhutto11 can you share which specific step you are stuck in?

For the title issue, you just need to put text in the h1. No need to add extra “title” tag inside the h1. The title is only needed in the “head” part

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