Category: 06. Forms
-
Input Attributes
HTML Input Attributes The HTML input attributes are used to define the characteristics and behavior of the <input> element. These attributes are used with the different types of input fields such as text, email, password, date, number and so forth. Note that the Input element is used to create interactive controls for the web-based forms so that it can…
-
Form Controls
HTML Form Controls The form elements that are used to create controls for the user interaction within the browser are termed as form controls. They enable users to enter information for the server side processing. The nature of interaction with the server can vary depending on the type of control used while creating the form. For…
-
Form Attributes
What are Form Attributes? In HTML, each element has its own attributes that are used to define the characteristics of that particular HTML element and are placed inside the element’s opening tag. The <form> element also has attributes that provide different functionalities like redirection on other web pages and auto completion of text. Following is a list of the most…
-
Forms
What is an HTML Form? HTML Form is a way of collecting and submitting information of the site visitors. It helps in making our web page more interactive and user friendly. We can see its application in various areas, including registration forms, customer feedback forms, online survey forms and many more. In this tutorial, we…