I verified my code, however I cannot spot my mistake at all. As Michael Scott requests in The Office US: “Why don’t you explain this to me like I’m 5?”.
(Update: I fixed my code and passed all tests.)
I verified my code, however I cannot spot my mistake at all. As Michael Scott requests in The Office US: “Why don’t you explain this to me like I’m 5?”.
(Update: I fixed my code and passed all tests.)
Welcome to the forums @rafaelleduarte1993.
When a test fails, click the red button to see which test(s) are failing and text to help you correct the issue.
The failing message says
Inside the form element, I can select a field from one or more groups of radio buttons. Each group should be grouped using the name attribute. Each radio button must have a value attribute.
Every radio-button group should have at least 2 radio buttons : expected 1 to be at least 2
AssertionError: Every radio-button group should have at least 2 radio buttons : expected 1 to be at least 2
Beyond that though, when looking at your code I see you have numerous syntax errors.
form element within a form element. You have this numerous times. (You need to correct this first, prior to trying to correct anything else)p2 is not valid HTML (you cannot create your own tags)A couple of things you can do to help yourself
form. One term you can try is html form elements
Hope I’ve explained it well enough.