Check Box : Check boxes allow the users to select more than one option . <INPUT TYPE=“CHECKBOX”> Checkboxes have the following attributes: § TYPE: checkbox. § CHECKED: is blank or CHECKED as the initial status. § NAME : is the name of the variable to be sent to the CGI application. § VALUE: is usually set to a value. Example on Check Box <HTML> <HEAD> <TITLE> CheckBoxType </TITLE> </HEAD> <BODY> <h1> <font color=green>Please check one of the following</font></h1> <FORM name=" form3 " Action=" url " method="get"> <font color=red> Select Country: </font><BR> Sri Lanka:< INPUT TYPE=" CheckBox " Name="country" CHECKED><BR> England<INPUT TYPE=" CheckBox " ...