<html>
<body>
<p>The label for the first radio button is outside the form, but still a part of the form.
Try clicking the text label to toggle the male radio button.</p>
<form action="https://www.w3schools.com/action_page.php" id="form1">
<input type="radio" name="gender" id="male" value="male"><br>
<label for="female">Female</label>
<input type="radio" name="gender" id="female" value="female"><br>
<label for="other">Other</label>
<input type="radio" name="gender" id="other" value="other"><br><br>
<input type="submit" value="Submit">
</form>
<label for="male" form="form1">Male</label>
</body>
<!-- Mirrored from www.w3schools.com/tags/tryit.asp?filename=tryhtml5_label_form by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:09:59 GMT -->
</html>