Hi I’m having a issue that I have looked for a solution for two days now with no success. Below is the code that I am trying to use to recreate the form in the challenge “Build a Survey Form”, and was in the stage of positioning the the options, text, radio buttons, and checkboxes. I am trying to add the label "Would you recommend freeCodeCamp to a friend? " question with the 3 radio buttons to choose from. The radio buttons appear but the question itself does not. I’ve tried just a label, tried putting the question in a different div, and tried different formats for the radio buttons just to see if that would work. Any help here would be great.
<fieldset>
<legend>Would you reccomend freeCodeCamp to a friend?</legend>
<label for="definitely"><input type="radio" name="radio" id="definitely" checked> Definitely</label>
<label for="maybe"><input type="radio" name="radio" id="maybe"> Maybe</label>
<label for="not-sure"><input type="radio" name="radio" id="not-sure"> Not sure</label>
</fieldset>
</div>