Survey form certification descendant issues

Tell us what’s happening:

The error message says I should make the #name, #email, #number, #name-label, #number-label, #email-label and #submit, a descendant of the #survey-form.

I have tried but my code is still not working. Please any tip will help.

Below is my code…

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

<html>
  <head>
    <title>Survey Form</title>
      <link rel="stylesheet" type="text/css" href="styles.css" />
      </head>
      <body>
      <header>
        <h1 id="title">Survey Form</h1>
        <p id="description"><em>Kindly give us your best opinion</em></p>
      </header>
<form id="survey-form" class="survey-form"></form>
  <fieldset>
    <label id="name-label">Name: <input id="name" type="text"name="name" placeholder="Enter your full name" required/></label>
    <label id="email-label">Email: <input id="email" type="email" name="email" placeholder="Enter your email address" required/></label>
    <label id="number-label">Number: <input id="number" type="number" name="number" min="11" max="14" placeholder="Enter your phone number" required/></label>
    </fieldset>
  <fieldset>What do you like most about our product?
    <select id="dropdown" name="dropdown">
      <option value="">(select one)</option>
      <option value="1">product packaging</option>
      <option value="2">fast cooking time</option>
    </select>
    </fieldset>
  <fieldset>Would you recommend our product to someone else?
    <label><input type="radio" name="referral" class="inline" value="referral"/>Yes</label>
  <label><input type="radio" name="referral" class="inline" value="referral"/>No</label></fieldset>
  <fieldset>What would you like us to improve on? (check all that apply)
  <label><input type="checkbox" value="suggest" name="price" class="inline">Price of product</label>
  <label><input type="checkbox" value="checboxes" name="delivery" class="inline">Delivery time</label>
  <label><input type="checkbox" value="checkboxes" name="packaging" class="inline">Product packaging</label>
  <label><input type="checkbox" value="checkboxes" name="customer service" class="inline">Customer service</label></fieldset>
  <fieldset>
       <label>Additional Comment: <textarea rows="3" cols="30" name="textarea"></textarea></label>

  <button id="submit" type="submit" value="Submit">Submit</button>
  </form>
  </body>

  </html>

Your browser information:

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

Challenge: Build a Survey Form

Link to the challenge:

Okay, let me see if it will work

A post was merged into an existing topic: Survey form project - your name-label should be a descendant of the survey-form

Please do not create duplicate posts on the same topic