Survey form html

Tell us what’s happening:
Describe your issue in detail here.
can some one help me here plz Im Stuck here:
I should have at least one textarea element that is a descendant of #survey-
form

I should have a select field with an id of dropdown

My #dropdown should have at least two selectable (not disabled) option elements.

**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>Form Task</title>
</head>
<body>

    <h1 id="title">Application</h1>
    <p id="description">This Privacy Policy describes Our policies
        and procedures on the collection, use and
        disclosure of Your information when You use the Service
        and tells You about Your privacy rights
        and how the law protects You.</p>

    <form id="survey-form" action="">
        <label id="name-label">Enter your name:</label>
        <input id="name" type="text" placeholder="Name" required>
        <label id="email-label">Enter your email:</label>
        <input id="email" type="email" placeholder="Email" required>
        <label id="number-label">Enter a number (between 5 to 30):</label>
        <input id="number" type="number" placeholder="Number" min="5" max="30" required>
        <p>Choose languages you know:</p>
        <br>
        <input type="checkbox"
               name="C"
               value="yes">C
        <br>
        <input type="checkbox"
               name="C++"
               value="yes">C++
        <br>
        <input type="checkbox"
               name="Java"
               value="yes">Java
        <br>
        <input type="checkbox"
               name="Python"
               value="yes">Python
        <br>
        <p>Do you agree this statement?</p>
        <br>
        <input type="radio"
               name="agree"
               value="yes">Yes
        <br>
        <input type="radio"
               name="agree"
               value="no">No
        <br>
        <input id="submit" type="Submit">
    </form>


</body>
</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/102.0.5005.63 Safari/537.36 Edg/102.0.1245.39

Challenge: Build a Survey Form

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.

1 Like

Sorry for that I edited it.

What help do you need? I don’t see a text area nor a select element in your code

1 Like

heyy I fixed my code thanks for your time

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