HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <form> <input type="radio" name="gender" value="male" id="male"><br> <label for="female">Female</label> <input type="radio" name="gender" value="female" id="female"><br> <label for="other">Other</label> <input type="radio" name="gender" value="other" id="other"> </form> <p><strong>Note: </strong> Try clicking of <strong>Male</strong> label shown below.</p> <label for="male" form="myForm">Male</label> </body> </html>
OUTPUT
×

Save as Private