<< < 1 2 3 4 5 6 7 > >>   Sort: Rank

HTML Table 'caption' Tag/Element
What Is a "caption" Tag/Element? A "caption" element is an inline element that you can use to define the caption text of a table. Browsers will display caption above the table and aligned to the center. Here are basic rules about "caption" elements: "caption" elements are inline elements. A "caption...
2017-04-22, 1258👍, 0💬

HTML 'form' Element Attributes
What Are the Attributes of a "form" Element? There are 3 commonly used attributes for a "form" element: "action" - Required attribute. Used to specify the URL of the form processing program. "method" - Optional attribute. Used to specify the form submission method: "get" or "post". method="get" is t...
2017-04-19, 1272👍, 0💬

Different Types of HTML 'input' Elements
How Many Input Types Are Supported by "input" Elements? There are 10 input types are supported by "input" elements: &lt;input type="text"&gt; - Input text box. This is also the default type. &lt;input type="password"&gt; - Password input box, which works like an input text box, but i...
2017-04-19, 1270👍, 0💬

Using HTML 'text' Input Fields
How To Use "text" Input Fields? A "text" input field is defined as &lt;input type="text" .../&gt;. A "test" input field can be used to create input field to allow viewers to enter text strings or numbers. There are other attributes you may need to use for a "text" input field: name="fieldNam...
2017-04-19, 1225👍, 0💬

HTML 'form' Tag/Element
What Is a "form" Tag/Element? A "form" element is a block element that you can use to define an input form with input fields. Here are basic rules about a "form" element: "form" elements are block elements. A "form" element can have empty content. A "form" element can have block elements as sub-elem...
2017-04-19, 1202👍, 0💬

HTML 'input' Tag/Element
What Is an "input" Tag/Element? An "input" element is an inline element that can used inside a "form" element to define an input field. Here are basic rules about an "input" elements: An "input" element is an inline element. It can not be used directly inside a "form" element. It can only be used in...
2017-04-19, 1172👍, 0💬

Using HTML 'password' Input Fields
How To Use "password" Input Fields? A "password" input field is defined as &lt;input type="password" .../&gt;. A "password" input field can be used to create an input field to allow viewers to enter text strings or numbers without showing the entered in clear text. A "password" input field i...
2017-04-15, 1371👍, 0💬

Using HTML 'checkbox' Input Fields
How To Use "checkbox" Input Fields? A "checkbox" input field is defined as &lt;input type="checkbox" .../&gt;. A "checkbox" input field can be used to create a checkbox to allow viewers to switch on or off a boolean flag. There are other attributes you may need to use for a "checkbox" input ...
2017-04-15, 1273👍, 0💬

Using HTML 'radio' Input Fields
How To Use "radio" Input Fields? A "radio" input field is defined as &lt;input type="radio" .../&gt;. "radio" input fields can be used to create a group of radio buttons to allow viewers to push one and only one button in the group. There are other attributes you may need to use for a "radio...
2017-04-15, 1238👍, 0💬

Values Submitted in HTML Checkbox Fields
What Are the Values Submitted on Checkbox Fields? A "checkbox" input field does not allow viewers to enter any input values directly. If a form is submitted, "checkbox" input fields will be submitted with values based on the following rules: If a "checkbox" is not checked, no value will be submitted...
2017-04-15, 1127👍, 0💬

Values Submitted in HTML Radio Button Fields
What Are the Values Submitted on Radio Button Fields? A "radio" button input field does not allow viewers to enter any input values directly. If a form is submitted, "radio" button input fields will be submitted with values based on the following rules: If a "radio" button is not pushed, no value wi...
2017-04-15, 1070👍, 0💬

Using HTML 'hidden' Input Fields
How To Use "hidden" Input Fields? A "hidden" input field is defined as &lt;input type="hidden" .../&gt;. "hidden" input fields can be used to create invisible fields with predefined input values hidden in the form. There are other attributes you need to use for a "hidden" input field: name="...
2017-04-12, 1207👍, 1💬

Using HTML 'hidden' Input Fields
How To Use "hidden" Input Fields? A "hidden" input field is defined as &lt;input type="hidden" .../&gt;. "hidden" input fields can be used to create invisible fields with predefined input values hidden in the form. There are other attributes you need to use for a "hidden" input field: name="...
2017-04-12, 1207👍, 1💬

Using HTML 'submit' Action Fields
How To Use "submit" Input/Action Fields? A "submit" input field is defined as &lt;input type="submit" .../&gt;. "submit" input fields can be used to create submit buttons in a form. When a submit button is clicked, the form will be closed and input data will be submitted to the processing pr...
2017-04-08, 1519👍, 0💬

Using HTML 'submit' Action Fields
How To Use "submit" Input/Action Fields? A "submit" input field is defined as &lt;input type="submit" .../&gt;. "submit" input fields can be used to create submit buttons in a form. When a submit button is clicked, the form will be closed and input data will be submitted to the processing pr...
2017-04-08, 1519👍, 0💬

Values Submitted in HTML Submit Button Fields
What Are the Values Submitted on Submit Button Fields? A "submit" button input field does not allow viewers to enter any input values directly. But if a form is submitted, "submit" button input fields will be submitted with values based on the following rules: If a "submit" button is not clicked, no...
2017-04-08, 1193👍, 0💬

Values Submitted in HTML Submit Button Fields
What Are the Values Submitted on Submit Button Fields? A "submit" button input field does not allow viewers to enter any input values directly. But if a form is submitted, "submit" button input fields will be submitted with values based on the following rules: If a "submit" button is not clicked, no...
2017-04-08, 1193👍, 0💬

Using HTML 'reset' Action Fields
How To Use "reset" Input/Action Fields? A "reset" input field is defined as &lt;input type="reset" .../&gt;. "reset" input fields can be used to create reset buttons in a form. When a reset button is clicked, the form will be refreshed by replacing user entered values with default values. On...
2017-04-08, 1164👍, 0💬

Using HTML 'reset' Action Fields
How To Use "reset" Input/Action Fields? A "reset" input field is defined as &lt;input type="reset" .../&gt;. "reset" input fields can be used to create reset buttons in a form. When a reset button is clicked, the form will be refreshed by replacing user entered values with default values. On...
2017-04-08, 1164👍, 0💬

Using HTML 'file' Input Fields
How To Use "file" Input Fields? A "file" input field is defined as &lt;input type="file" .../&gt;. "file" input fields can be used to create file upload input fields. Most browsers will display a file upload input field as a text input box followed by a "Browse..." button. The other attribut...
2017-04-08, 1121👍, 0💬

Using HTML 'file' Input Fields
How To Use "file" Input Fields? A "file" input field is defined as &lt;input type="file" .../&gt;. "file" input fields can be used to create file upload input fields. Most browsers will display a file upload input field as a text input box followed by a "Browse..." button. The other attribut...
2017-04-08, 1121👍, 0💬

HTML 'textarea' Element Attributes
What Are the Attributes of a "textarea" Element? There are several commonly used attributes for a "textarea" element: rows="n" - Required attribute. Used to specify the number of rows of the text input area. cols="n" - Required attribute. Used to specify the number of columns of the text input area....
2017-04-04, 1204👍, 0💬

Using HTML 'button' Input Fields
How To Use "button" Input Fields? An "button" input field is defined as &lt;input type="button" .../&gt;. "button" input fields can be used to create client-side action buttons. If a client-side action button is clicked, a client-side script will be triggered. The client-side script could th...
2017-04-04, 1203👍, 0💬

Using HTML 'textarea' Input Fields
What Is a "textarea" Tag/Element? A "textarea" element is an inline element that you can use to define a large input area in a form. Here are basic rules about a "textarea" element: "textarea" elements are inline elements. "textarea" elements can only be used as sub-elements of "form" elements. A "t...
2017-04-04, 1180👍, 0💬

<< < 1 2 3 4 5 6 7 > >>   Sort: Rank