Page 102 - modular_v2.0_HTML&_CSS_Fb
P. 102
<INPUT TYPE="CHECKBOX" NAME="Hobbies" VALUE="Travelling"/> Travelling
<BR/>
<INPUT TYPE="CHECKBOX" NAME="Hobbies" VALUE="PlayingGames"/> Playing games
<BR/>
<INPUT TYPE="CHECKBOX" NAME="Hobbies" VALUE="Singing&Dancing"/> Singing &
Dancing
<BR/>
</FORM>
</BODY>
</HTML>
Adding checkbox
Adding a Password Field
This is also a single-line text input but it masks the character as soon as a user enters into it. The
password is not visible to the user in password field control.
Syntax:
<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'.
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>Form</TITLE>
</HEAD>
<BODY>
<FORM>
Password : <INPUT TYPE="PASSWORD" NAME="password"/>
</FORM>
100
Touchpad MODULAR (Ver. 2.0)

