Eduaction Management 959 Lahore
Code With Jahangir
Introduction
FREE COURSES
FREE CERTIFICATE
Introduction
What are forms?
Forms are the interactive part of the web page. They are used to take user’s input in different ways. These inputs are taken using various controls. The data collected by these controls can be used for processing, storing etc.
HTML forms sturcture:
<form>
<!- - other form tags/controls - ->
</form>
How to use?
To take input through controls <input >tag is used in the way mentioned below:
.<input type=” “ name=” “, value= “ “>
The "type" attribute of input element can be various types, which defines information field.
The “name” attribute is the name given to the control which is used to access the value entered by the user
The “value” attribute is the value to be displayed on the control given which is default and can be replaced.
Eduaction Management 959 Lahore
Code With Jahangir
Introduction
FREE COURSES
FREE CERTIFICATE