Page 76 - Modular_V1.1_Flipbook
P. 76

Let us create a web page to display the combo box.

                  <HTML>
                  <BODY>
                  <FORM>

                  Select Stream :
                  <SELECT NAME="List Name">
                  <OPTION>Science

                  <OPTION>Commerce
                  <OPTION>Arts
                  </SELECT>
                  </FORM>
                                                                                       Adding combo box
                  </BODY>

                  </HTML>
                  Let us create a web page containing login form to accept the user name and password from the
                  user. Code to create the Form.html is as follows:

                  <HTML>
                  <HEAD>
                  <TITLE> Login Form </TITLE>
                  </HEAD>
                  <BODY BGCOLOR="lightyellow">

                  <FORM>
                  User Name : <INPUT TYPE="TEXT" NAME="USER NAME"> <BR>
                  Password : <INPUT TYPE="PASSWORD" NAME="PASSWORD"><BR>
                  <INPUT TYPE="CHECKBOX"> Remember me next time

                  <BR>
                  <INPUT TYPE="BUTTON" VALUE="Log IN">
                  </FORM>
                  </BODY>
                  </HTML>

                  The output of the Form.html web page appears as shown:

















                                                                 Output

                  74      Touchpad MODULAR (Version 1.1)-IX
   71   72   73   74   75   76   77   78   79   80   81