This is the source code from the HTML5 Tutorial For Beginners. In this source code, you are going to learn about HTML5 – Radio Buttons.
Source Code:
<!DOCTYPE html> <html> <head> <title>My first web page</title> </head> <body> <form> Select Your Gender<br> <input type="radio" name="gender" value="male" checked>Male<br> <input type="radio" name="gender" value="female">Female<br> </form> <body> </html>