How to add Input filed in HTML ?
Answers
Answered by
0
The <input> tag specifies an input field where the user can enter data. <input> elements are used within a <form> element to declare input controls that allow users to input data. An input field can vary in many ways, depending on the type attribute.
Answered by
6
<input> tag defines the start of an input field where users cab enter data.
It is associated with its type attribute.
It is an empty element.
For example, <input type=" password ">
Similar questions