Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML fieldset tag</title> </head> <body> <form action="http://www.example.com/" method="post"> <fieldset> <legend>Gender</legend> <input type="radio" name="gender" value="male" id="male"> <label for="male">Male</label> <input type="radio" name="gender" value="female" id="female"> <label for="female">Female</label> </fieldset> </form> </body> </html>