Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <h2>Radio Button Example</h2> <form> <input type="radio" name="game"value="football" checked> Football <input type="radio" name="game" value="basketball"> Basketball </form> </body> </html>