Survey Form - Build a Survey Form

Tell us what’s happening:
I don’t understand what name I’m putting,I try to put a surname or first name it still error

Your code so far

/* file: index.Ext.html */

<!DOCTYPE html>
<h1 id="title">SURVEY FORM</h1>
<p id="description">Please Fill Out Form Below To Submit Your Job Application</p>
<form id="survey-form"></form>
<input id="name">surname</input>

    








/* file: styles.Ext.css */

Your mobile information:

2409BRN2CA - Android 14 - Android SDK 34

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

input element is a void element, it’s doesn’t need the closing tag. Text for the input element goes within a label element.

Okay what about the dropdown option I don’t understand that at all

You need to tell us about the issue in details.

select is a html element that make a dropdown menu. It’s take option elements as child element. There you can add context about the dropdown menu.

Tell us what’s happening:
This what I’m talking about here what should I disable

Your code so far

/* file: index.Ext.html */



<!DOCTYPE html>
<h1 id="title">SURVEY FORM</h1>
<p id="description">Please Fill Out Form Below To Submit Your survey form</p>
<form id="survey-form"><input placeholder="full name "id="name" type="text" required ><input placeholder="email address" id="email" type="email" required></input><input  placeholder="password"id="number" type="number" min="18" max="80"></input></input>
<label id="name-label">first name</label>
<label id="email-label">email</label>
<label id="number-label">age</label>
<select id="dropdown"></select> 
</form>  





    







    

    







    





    

/* file: styles.Ext.css */

Your mobile information:

2409BRN2CA - Android 14 - Android SDK 34

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

That’s a select element with the id dropdown.
Now tell me what did you want to do? What is the challenge instructions asking you?

This is the hint given to me but I don’t understand it
Your #dropdown should have at least two selectable (not disabled) option elements.

So create two option element between the above select opening and closing tags. Then run the test to see what hints the console give you.

This is the next hint given to me
You should have at least two input elements with a type of radio (radio buttons).

Create two input elements. And add it type attribute with the value "radio" to it’s opening tags.

Is it between the opening tag and closing tag of the option element

You need to add it After select element

And is it the two input element that will be In the middle of the option element or it only one

Between the option opening and closing tags, you need to add some text as per your survey form context.

It project I’m doing
I wasn’t given any content text

Is it in the middle of the opening tag and closing tag of the select elements or after the closing tag of the select elements

You should add context to each element that need context about survey form

After closing select tag

Can I add anything to the context because I wasn’t given any particular context

It works but I don’t understand the next one but this was the hint given to me
All your radio buttons should have a value attribute and value.