show-notice
hide-notice

Friday 9 August 2013

HTML form Tag


Introduction:

The HTML form tag is used for declaring a form.The <form> tag is used in conjunction with form-associated elements. To create a form, you can nest form-associated elements inside the opening/closing <form> tags.

Example:
<html>
<head>
<title></title>
</head>
<form action="http://www.gohilinfotech.blogspot.in" method="get">
First name:
<input type="text" name="first_name" value="" maxlength="100" />
<br />
Last name:
<input type="text" name="last_name" value="" maxlength="100" />
<input type="submit" value="Submit" />
</form>
</html>

SHARE THIS POST   

0 comments :

Post a Comment

Design by Gohilinfotech | www.gohilinfotech.blogspot.com