Extra Cheesy Coding: Radio Buttons
Radio buttons use the <input> tag. Here we go:
Button 1
Button 2
That is bad! Try this:
Button 1
Button 2
How To Code:
<input type="radio" /> Button 1<br />
<input type="radio" /> Button 2<br />
-------------------------------------------
<input name="radioexample" type="radio" /> Button 1<br />
<input name="radioexample" type="radio" /> Button 2<br />
Button 1
Button 2
That is bad! Try this:
Button 1
Button 2
How To Code:
<input type="radio" /> Button 1<br />
<input type="radio" /> Button 2<br />
-------------------------------------------
<input name="radioexample" type="radio" /> Button 1<br />
<input name="radioexample" type="radio" /> Button 2<br />
Comments
Post a Comment
You have made a comment on Fun Studios!