Tell us what’s happening:
Describe your issue in detail here.
I have almost completed the build a survey form, but I am getting errors at the radio button area, and the text area is not a descendant of survey-form.
I wrapped the the option element with the input element but I still receive the input error. Please provide progressive steps?
" * ou should have at least two input elements with a type of radio (radio buttons).
Failed:You should have at least two radio buttons that are descendants of #survey-form.
Failed:All your radio buttons should have a value attribute and value.
Failed:All your radio buttons should have a name attribute and value.
Failed:Every radio button group should have at least 2 radio buttons.
Passed:You should have at least two input elements with a type of checkbox (checkboxes) that are descendants of #survey-form.
Passed:All your checkboxes inside #survey-form should have a value attribute and value.
Failed:You should have at least one textarea element that is a descendant of #survey-form."
<!-- file: index.html -->
Survey Form
Short explanation
Enter your name:
Enter your e-mail:
Enter your number:
```
```css
/* 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/114.0.0.0 Safari/537.36
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.
ou should have at least two input elements with a type of radio (radio buttons).
Failed:You should have at least two radio buttons that are descendants of #survey-form.
Failed:All your radio buttons should have a value attribute and value.
Failed:All your radio buttons should have a name attribute and value.
Failed:Every radio button group should have at least 2 radio buttons.
Passed:You should have at least two input elements with a type of checkbox (checkboxes) that are descendants of #survey-form.
Passed:All your checkboxes inside #survey-form should have a value attribute and value.
Failed:You should have at least one textarea element that is a descendant of #survey-form.
Thank you for the prompt feedback, your advice is helpful. Unfortunately I still recieve errors. Why is my title not showing? I m struggling to have the dropdown have two selectable options? I re did my text area element and now its not behaving correctly and the submit button is receiving errors. Please provide assistance.
The title should be found between the ‘title’ tags. That is what you see written on the browser’s page tab. On the other hand, the h1 element serves to add headings within the body element.
The closing ‘textarea’ tag is not closed.
You should have a title (heading) with id=“title” in H1 sized text.
The ‘select’ element should contain only ‘option’ elements within itself, not the ‘input’ elements.
You should have two input elements with the ‘type’ attribute set to the value of “radio”, but both should be off from the ‘select’ element.