I’m doing the freecodecamp.com certification and I found what I think may be an error on their side. This part of the HTML module teaches about radio buttons and asks you to add some to the app you code throughout the course. The problem happens when I compile it and the built-in compiler shows the following error:
// running tests
Each of your radio button elements should be added within the form tag.
// tests completed
As far as I’m concerned, the code for the buttons is within the <form> tags. I tried adding extra <form> tags wrapping the whole piece of code and also putting it on another separated <form> tag but the error remains unchanged.
And I’m doing the Responsive Web Development Certification, and this is the radio buttons lesson, I think is number 21 in the HTML module of the course.
For what its worth, HTML is not compiled. You won’t find a ‘compiler’ error with HTML, CSS, or JavaScript. That’s more of a C, Rust, ect sort of thing.