The problem isn’t with the title but rather with the duplicate id’s here:
<div id="description" class="info">
<p id="description">Please take the time to tell us about your video game habits and preferences by answering the questions below.</p>
Get rid of the id inside the div element and it should pass the test. Remember that ids can only be used once.
There are HTML coding errors you should be aware of and address.
Since copy/paste from codepen you can ignore the first warning and first two errors.
Side note, not so much on the checkboxes but more on the radio buttons, when I click on a label I expect the radio button on the left to hightlight, not the one on the right. I feel as if I’ve made and incorrect choice.
If you’ve ever filled out a form on-line you must have noticed that the radio button / checkbox is on the left and the associated label is on the right.
And, that radio buttons and checkboxes are stacked rather than in-line. The human eye is not meant to follow a form that way.
Thank you for your feedback. I’ve fixed the radio buttons and checkboxes to make it clearer. I am going to check out the HTML checker you recommended and make any alterations and will use for future projects!