I need help // running tests Each of your radio button elements should be added within the
form
tag. // tests completed
this part tconfused me if you know what it means pls tell me
I need help // running tests Each of your radio button elements should be added within the
form
tag. // tests completed
this part tconfused me if you know what it means pls tell me
If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
Thank you.
You have a form tag, and you should put all the radio buttons inside the form element.
The form element will creat a section for u to put all the form elements in so
the user can fill the information, like when u put some rice in a page so things
don’t get missy right? then the input element will creat an area that the user
will fill if it was like a text or email, he can also click on it to choose it
like with radio or checkboxes and then u give every input a label so the user
knows what that input is about
<input type="radio" name="" value="" />
<label for=""></label>
<input type="radio" name="" value="" />
<label for=""></label>
<input type="radio" name="" value="" />
<label for=""></label>
</form>
type or paste code here
this code will give u three radio buttons and u can put the label of each one . we group them by giving them a name so the browser knows that they all are related so if i check the first button the others will get deselected. The value attribute is there for programmers to know which button got selected , it is never shown to the user. this is some general info please put some code so others can see what are you having problem with.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.