Build a Survey form stuck

I keep getting 16/17 and I am not sure what I am missing?

Neither are we unless we can see your project and test for ourselves :smiley:

1 Like

As mentioned earlier, it would help to see your code.

But also, make sure to read the full error message.
It will provide hints as to why you are not passing the test.

It doesnt provide the reason?

<div class="main">
<h1 id="title"> TheManCalledPan Survey</h1>
<p id="description"> Please take the time to fill out my survey</p>
<div class="main content">
<div class="form-content">
<form id="survey-form">
<label for="name" id="name-label">Name</label>
<input id="name" type="text" required placeholder="Enter your Name" />
<label for="email" id="email-label">Email</label>
<input id="email" type="text" required placeholder="Enter your Email" />
<label for="number" id="number-label">Rate from 1 to 10</label>
<input id="number"type="number"min="1"max="10" required placeholder="Rate this Survey" />
<label for="dropdown"> Which option best describes your current Role?</label>
<select id="dropdown">
<option value="student">Student</option>
<option value="full-time">Full-time</option>
<option value="part-time">Part-time</option>
<option value="prefer not to say">Prefer not to say</option>
<option value="other">Other</option>
</select>
<fieldset>
<legend> Would you Recommend this to a friend?</legend>

<input type="radio" name="recommend"id="Definitely"value="definitely"/><label for="definitely">Definetly</label></ br>

<input type="radio" name="recommend"id="maybe"value="maybe"/><label for="maybe">Maybe</label></ br>

<input type="radio" name="recommend"id="no"value="no"/><label for="no">No</label></ br>
</fieldset>

<p>What Would you like to see changed?</p>
<input type="checkbox" id="video-content"name="video-content"value="video-content">
<label for="video-content">Video Content</label></br>

<input type="checkbox" id="content-quality"name="content-quality"value="content-quality">
<label for="content-quality">Content Quality</label></br>

<input type="checkbox" id="video-format"name="video-format"value="video-format">
<label for="video-format">Video Format</label></br>

<label for="comment">Comments or Suggestions?</label>

<textarea rows="4" cols="50"id="comment">Enter your Comments here...</textarea>

<button type="submit"id="submit">Submit</button>
<script src="[https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js](https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js)"></script>
</body>
</form>
</div>
</div>
</div>

https://codepen.io/Themancalledpan/pen/RwpLewN

You have to open up the test suite to read the full error message.
Click on the red 16/17 button.
It does provide a reason why it is not passing.

Hope that helps!


I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

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