Prev Demo
Radio Buttons In HTML & HTML5.
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <form> <h1>Radio button</h1> <input type="radio" id="radio1" name="radio1" value="1"/> Value 1 <input type="radio" id="radio2" name="radio1" value="2" /> Value 2 <input type="radio" id="radio3" name="radio1" value="3" /> Value 3 </form> </body> </html>
Note: We DO NOT save your trial code in our database.
Output