Survey Form - Build a Survey Form

Tell us what’s happening: I keep get the error for #survey-form being miss but it on my code not sure what wrong.

Your code so far

html

Document

freeCodeCamp Survey Form

Thank you for taking the time to help us improve the platform

name
<div="form-group">
    <label id="email-label" for ="email">
        email
    </label>
    <input
    type="email"
    name="email"
    id="email"
    class="form-coloms"
    placeholder="enter your email"
    required
    />
</div>

<div="form-group">
    <label id="number-label" for ="age">
        age
    </label>
    <input
    type="number"
    name="age"
    id="number"
    min="21"
    max="99"
    class="form-coloms"
    placeholder="enter your age"
    required
    />
</div>

<div=“form-group”>

Which option best describes your current role?


<div=“form-group”>

Would you recommend freeCodeCamp to a friend?




definitely

maybe not sure

What is your favorite featur of freeCodeCamp?

What would you like to see improved? (Check all that apply)

Front-end Projects Back-end Projects Data Visualization Challenges Open Source Community Gitter help rooms Videos City Meetups Wiki Forum Additional Courses

Any comments or suggestions?

<div class="form-group">
    <button type="submit" id="submit" class="submit-button">
        Submit
      </button>
</div>
</div>

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.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

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

Challenge Information:

Survey Form - Build a Survey Form

Please use the following method to paste your code in here properly so we can read it.

To display your code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key. You may also be able to use Ctrl+e to automatically give you the triple back ticks while you are typing in the this editor and the cursor is on a line by itself. Alternatively, with the cursor on a line by itself, you can use the </> button above the editor to add the triple back ticks.

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