Page 79 - TP_Prime_V2.2_Class8
P. 79

TYPE="CHECKBOX" indicates that the form element is check box.
                 NAME="Hobbies" is the name of the check box.

                 VALUE="Reading" is the default value of check box.
                 CHECKED attribute selects the specific check box by default.
                 Let us create a web page to display the check box.


                 <!DOCTYPE html>

                 <HTML>

                 <BODY>
                 <FORM>                                                                                                     MORE ON HTML

                 Hobbies: <BR>
                                                                                   Output
                 <INPUT TYPE="CHECKBOX" NAME="Hobbies" VALUE="Reading"> Reading <BR>
                 <INPUT TYPE="CHECKBOX" NAME="Hobbies" VALUE="Reading"> Travelling <BR>
                                                                                                                          77
                 <INPUT  TYPE="CHECKBOX"  NAME="Hobbies"  VALUE="Reading">  playing  games
                 <BR>
                 <INPUT TYPE="CHECKBOX" NAME="Hobbies" VALUE="Reading"> singing & dancing
                 <BR>
                 </FORM>

                 </BODY>
                 </HTML>

                 Adding  Password  Field
                 This is also a single-line text input, but it masks the character as soon as a user enters a
                 character/number into it. The password is not visible to the user in password field control.
                 To add the password field to the form, follow the syntax as given below:

                 <INPUT TYPE="PASSWORD" NAME="Name of Password Field" SIZE="Size of the
                 password Field">
                 For example:

                 <INPUT TYPE="PASSWORD" NAME="Pass" SIZE="10">
                 TYPE="PASSWORD" indicates that the form element is password.
                 Name="Pass" indicates that the name of the password field is "Pass".
                 SIZE="10" denotes the maximum size of the password field i.e. '10'.
                 Let us create a web page to display the password field.

                 <!DOCTYPE html>

                 <HTML>
                 <BODY>

                 <FORM>                                                          Output
                 Password: <INPUT TYPE="PASSWORD" NAME="Pass" SIZE="10">
   74   75   76   77   78   79   80   81   82   83   84