Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.
please I don’t understand :point_right:“every radio button group should have at least 2 radio buttons”

  **Your code so far**
/* file: index.html */
<h1 id="title">S.walley Survey Form</h1>
<p id="description">thank you for participating</p>
<form id="survey-form">
<input id="name" type="text" required placeholder="enter your name"/>
<input id="email" type="email" required placeholder="enter your email"/>
<input id="number" type="number" min="18" max="25"placeholder="enter your age"/>
<label id="name-label">name<label/>
<label id="email-label">email<label/>
<label id="number-label">number<label/>
<select id="dropdown"><option><option/><option></option><select/>
<input type="radio"value="a"name="a"/>
<input type="radio"value="b"name="b"type="radio"type="radio"/>
<input type="checkbox" value="c"/>
<input type="checkbox" value"d"/>
<form/>
/* 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/104.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

this error may be referring to the requirement #12

  1. Inside the form element, you should have a select dropdown element with an id of dropdown and at least two options to choose from

and in your code you didn’t actually put any options (though you created the option tags)
<select id="dropdown"><option><option/><option></option><select/>

try putting some words in the options as that may help the checker.

Thank you, I tried it but it was wrong

If your code still looks like this then try making some improvements like:

In the last checkbox line, you are missing an equal sign .
In the first two radio buttons, put a space between each attribute and the next one (so a space after each ending double quote)
Also remove duplicate “type” attributes. Only one of these per input field.

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