+ 1
Input and label..!?
Please someone explain me what is input and label and how to use them.. with some examplesđ đ
2 Answers
+ 5
The <input> HTML element is used to create interactive controls for web-based forms in order to accept data from the user.
The <label> HTML element represents a caption for an item in a user interface.
<label>
Enter Text
<input type="text" name="" value="block one">
</label>