I am relatively new to this, but i am trying to create a list of options to choose from, and i font want any but one of the options to allow the user to continue. Like when you put a requirement on a password, is there a way to put a requirement as to which Radio button can be allowed to be selected? Like "Wrong answer" pops up until they select the correct answer. Any tips or referrals would be appreciated.
Here is what i got so far.
<p>Whats an aliens hobby?</p>
<form>
<label for="skiing">Skiing:</label>
<input type="radio" name="hobbychoice">
<label for="murder">murder:</label>
<input type="radio" name="hobbychoice" incorrect>
<label for="hecking and general computer owning skills">hecking and general computer owning skills:</label>
<input type="radio" name="hobbychoice" correctanswer>
<button>Check Answer</button>