Page 104 - modular_v2.0_HTML&_CSS_Fb
P. 104
<HTML>
<HEAD>
<TITLE> Login Form </TITLE>
</HEAD>
<BODY STYLE="BACKGROUND-COLOR: LIGHTYELLOW;">
<FORM>
User Name <BR/>
<INPUT TYPE="TEXT" NAME="USER NAME"/> <BR/>
Password
<BR/>
<INPUT TYPE="PASSWORD" NAME="PASSWORD"/><BR/>
<INPUT TYPE="CHECKBOX"/> Remember me next time
<BR/>
<INPUT TYPE="BUTTON" VALUE="Login"/>
</FORM>
</BODY>
</HTML>
The output of the Form.html web page appears as shown:
Output
The <TEXTAREA> Tag
The <TEXTAREA> tag is used to create a multiline text box that can accept log text values. We
can specify the number of rows and columns we want in text area by using the ROWS and COLS
attributes of the <TEXTAREA> tag. The syntax of the <TEXTAREA> tag is as follows:
<TEXTAREA NAME="FIELD_NAME" ROWS="ROWS_VALUE" COLS="COLS_VALUE">
DEFAULT TEXT
</TEXTAREA>
Let us create a web page to display the textarea.
<!DOCTYPE HTML>
<HTML>
<HEAD>
102
Touchpad MODULAR (Ver. 2.0)

