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

HTML 'strong' Tag/Element
What Is an HTML "strong" Tag/Element? A "strong" element is an inline element that you can use to specify text with a strong emphasis. Here are basic rules about "strong" elements: "strong" elements are inline elements. "strong" elements can not be used at block level. Contents of "strong" elements ...
2017-04-28, 1220👍, 0💬

HTML 'del' and 'ins' Tags/Elements
What Are HTML "del" and "ins" Tags/Elements? "del" and "ins" elements are inline elements that you can use to specify text to be treated as deleted text and inserted text respectively. Here are basic rules about "del" and "ins" elements: "del" and "ins" elements are inline elements. "del" and "ins" ...
2017-04-28, 1108👍, 0💬

HTML Forms and Input Fields
Where to find tutorials of introduction to HTML Forms and Input Fields? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML Forms and Input Fields. Clear answers are provided with tutorial exercises on forms and input fields: f...
2017-04-22, 1376👍, 0💬

Creating Nested HTML Tables
How To Create Nested Tables? You can create nested tables by including a child table inside a cell of the parent table. Below is a tutorial example of nested tables: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/D TD/...
2017-04-22, 1372👍, 0💬

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, 1146👍, 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, 1162👍, 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, 1161👍, 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, 1125👍, 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, 1100👍, 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, 1071👍, 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, 1256👍, 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, 1135👍, 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, 1134👍, 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, 1040👍, 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, 994👍, 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, 1102👍, 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, 1102👍, 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, 1425👍, 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, 1425👍, 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, 1092👍, 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, 1092👍, 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, 1075👍, 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, 1075👍, 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, 1001👍, 0💬

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