Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.

I’ve passed most of the checks so far, but I keep failing the - descendants of #survey-form type checks. Can anyone help me how I can correct these checks. Thank you

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
 <h1 id="title">How amazing is Rachel Survey Form</h1>
  <p id="description">Thank you for taking the time to answer these questions.We are collecting data on the special specimen (Rachel - who we all know and love) to decipher why she is so amazing.<p> 
  </head>
  <fieldset>
  <form id="survey-form"> 
  <label id="name-label">Name <input id="name" type="text" placeholder="Rachel" required /></label>
  <label id="email-label"> Email <input id="email" name="email" type="email" placeholder="grassgrass002@gmail" required></label>
  <label id="number-label">Age <input id="number" type="number" name="age" min="13" max="120" placeholder="13" required/> </label>
  </fieldset>
  <fieldset>
  <label for="How would you rate Rachel">How would you rate Rachel ? <select id="dropdown" name="rating">
  <option value="0">(select one)</option>
  <option value="1">99/100</option>
  <option value="2">100/100</option>
  <option value="3">101/100</option>
  <option value="4">102/100</option>
  <option value="5">off the scales</option>
  <option value="6">no number can measure how awesome she is</option>
  </select>
  </label> 
  </fieldset>
<fieldset>
  <label id="question"> What qualities would  describe Rachel the best?</label><br>
  <label for="funny" value="7" ><input id="funny" type="radio" name="funny" class="inline" /> Funny</label><br>
  <label for="creative" value="8" ><input id="creative" type="radio" name="creative" class="inline" /> Creative</label><br>
  <label for="energetic" value="9" ><input id="energetic" type="radio" name="energetic" class="inline" /> Energetic</label><br>
  <label for="confident" value="10"><input id="confident" type="radio" name="confident" class="inline" /> Confident</label><br>
  <label for="patient" value="11" ><input id="patient" type="radio" name="patient" class="inline" /> Patient</label><br>
  <label for="intelligent" value="12" ><input id="intelligent" type="radio" name="intelligent" class="inline" /> Intelligent</label><br>
  <label for="thoughtful" value="13" ><input id="thoughtful" type="radio" name="thoughtful" class="inline" /> Thoughtful</label><br>
  <label for="polite" value="14" ><input id="polite" type="radio" name="polite" class="inline" /> Polite</label><br>
  <label for="original" value="15" ><input id="original" type="radio" name="original" class="inline" /> Original</label><br>
</fieldset>
<fieldset>
  <label for="compliments">Provide any additional compliments for Rachel<br> 
  <textarea id="compliments" placeholder="Rachel is so amazing."></textarea></label>
  </fieldset>
  <input type="submit" value="Submit" id="submit" />
</form>
</html>
/* 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/110.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Where is the #survey-form element located? Remember, if an element is nested within another element then it is “visible” within the outer element.

It’s on the 8th line

Yes, I know where it is. I was trying to get you to look closely about where in the DOM it is located. My reminder above about nesting elements was a hint as to what the problem is.

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