Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <p>Which is your favorite fruit?</p> <form action="/form/submit" method="get"> <div> <input type="radio" id="apple" name="fruite" value="apple" checked="checked"> <label for="apple">Apple</label> </div> <div> <input type="radio" id="banana" name="fruite" value="banana"> <label for="banana">Banana</label> </div> <br/> <input type="submit" value="Submit" /> </form> </body> </html>