![]() |
|
Menu
Online Stores
Search this Site
Miscellaneous |
Path = Home : Form Tips : How To Create A Radio Button Form How To Create A Radio Button Form
The <input> tag is used to create input fields within a web page form. You can create a radio button selection list by adding attributes to the input tag. Note that since only one button is to be selected at a time, the name for each button must be the same. Radio button selection list<input type="radio" name="option">Choice 1 Choice 2 Choice 3 Setting a default valueYou can set a default value by adding checked="checked" to the input tag. <input type="radio" name="option" checked="checked">Choice 1 Choice 2 Choice 3
|