I searched all day along and finally found out all I need on USA2017.
/From the "Feedback collection on USA2017.INUMO.RU", USA2017.INUMO.RU./
Forms: checkboxes. Lesson 15. input type="checkbox" defines a checkbox. Checkboxes are similar to radio buttons but have special features. Checkboxes let a user select zero or more options of a limited number of choices. To set a checkbox use type="checkbox" of element input. Attribute names must be different for all checkboxes's elements of a current group. Attribute checked="checked" set checked sign for every single checkbox.
<form action="formdata.php" method="POST" name="form1"> <p><label>Name (max 32 chars): <input type="text" name="name1" size="32" maxlength="32" /></label></p> <p><label>Password (max 6 chars): <input type="password" name="pas1" size="10" maxlength="6" /></label></p> <p>Do you love America? ::::: <label>Yes<input type="radio" name="love_america" value="yes" checked="checked" /></label> ... or ... <label>No<input type="radio" name="love_america" value="no" /></label> </p> <p>What states of US do you like?</p> <p> <label><input type="checkbox" name="ny" value="" />New York</label> <label><input type="checkbox" name="florida" value="" checked="checked" />Florida</label> <label><input type="checkbox" name="texas" value="" />Texas</label> </p> </form>
Attention!
Thank you for visit! I wish you great success in present and future!