HTML FORMS
Html Forms are used to accept different kinds of input from the user. The Form element is used to create forms. To create different controls in a form, the web page designers use the Input element. The Type attributes within the INPUT element defines the type of control to be created. We have different kinds of the form element like text box, radio button, menu list, check box and buttons in the form elements.
Here is the simple code of a Form:
<form action="" method="Get">
<table>
<tbody>
<tr>
<td>Brand: </td>
<td><input disabled="" type="text" value="Cars" /> </td></tr>
<tr>
<td>Brand Model: </td>
<td><input type="text" value="Honda City" /> </td></tr>
<tr>
<td>Color: </td>
<td><textarea cols="15" readonly="" rows="3">
Black
White
Gray
</textarea>
</td></tr>
<tr>
<td><input type="hidden" value="M101" /></td>
<td><input type="button" value="Done" /></td>
</tr>
</tbody></table>
</form>
Here is the simple output:
AoA, Hi Guys: Below is a link to my "Child Labor Online Complain Form." There's more on the way . . . currently working on the frames so just hold tight!!! here we go . . .
ReplyDeletehttp://sajjadclasswork.blogspot.com/2013/07/child-labor-online-complain-form.html