0

I am making a website for an assignment which includes a survey and am asking a series of questions consisting of radio buttons and checkboxes.

I have no problem doing the code for those and here is an example of the code:

p for="question_1">1. Do you make use of Public Transport?*</p>
                <input type="radio" id="question_1_option_1" name="question_1_answer" value="option_1">
                <label for="question_1__option_1">Yes</label>
                <br>
                <input type="radio" id="question_1_option_2" name="question_1_answer" value="option_2">
                <label for="question_1_option_2">No</label>

I wish to make questions such as this compulsory and unable to continue until they fill them in. Would you kindly assist me in this endeavor or point me towards an article where i can learn how to make such a function?

Does including a required in the input fix it? (can't test it out yet)

(NB: i am also incorporating php in my website.)

Mark Bonello
  • 29
  • 1
  • 5

0 Answers0