|
The Radio Button To create a radio button, you follow the <FORM> tag with <INPUT TYPE="radio">, and close it off with </FORM>. You'll probably want to follow each button with some sort of text identifying what it's for, and insert a line break or paragraph tag between choices.... Some HTML might look like this: <H3> And would appear on the page so: Now, if you care less about an honest response than you do about a, uh, correct response, you may want the radio buttons to appear pre-selected. You can do this by adding the CHECKED attribute to the <INPUT> tag, like so.... <FORM> And your page will appear skewed in your favor.... |