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

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, 1646🔥, 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, 1646🔥, 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, 1622🔥, 0💬

HTML Ordered List Item Markers
How To Use Different Markers on Ordered List Items? By default, browsers will use decimal numbers as the item markers for ordered lists. If you want to change them to something else, like alphabetical letters, you need to use CSS properties. Here is a tutorial sample showing you how to set item mark...
2017-05-29, 1621🔥, 0💬

Commonly Used HTML Inline Elements
What Are Commonly Used Inline Elements? Here are some commonly used inline elements: strong - Defining text with a strong emphasis. em - Defining text with an emphasis. code - Defining computer code text. sub - Defining a subscript text. sup - Defining a superscript text. del - Defining text to be t...
2017-08-03, 1615🔥, 0💬

Interview Questions - HTML Forms and Input Fields
Where to find Interview Questions on HTML Forms and Input Fields? Here are some interview questions on HTML Forms and Input Fields: What is a form? What elements can you use to submit a form? When a form is submitted, where the data is delivered to? What is a hidden input field? How to create a grou...
2017-02-28, 1602🔥, 0💬

Browsers Supporting Multiple HTML Forms
Do Browsers Support Multiple Forms? HTML does allow you to create multiple forms in a single XHTML document. Most browsers will display and handle multiple forms properly. If click a submit button in one form, browsers will submit input data only for that one form. Input data from other forms will b...
2017-04-01, 1592🔥, 0💬

'width' for HTML Table Widths
How To Control Table Widths? Usually, browsers will calculate the table width based on the content widths of table cells. If you want to control the width of a table, you need to use the "width" attribute, which allows you to set the table width in pixels or percentages of the parent element width. ...
2017-05-05, 1590🔥, 0💬

Nested HTML 'div' Elements
Can "div" Elements Be Nested? Can "div" elements be nested? The answer is yes. In fact, nested "div" elements provides you more flexibilities to specify CSS properties at different levels. Here is a tutorial example of nested "div" elements: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html...
2017-03-11, 1582🔥, 0💬

Interview Questions - HTML General
Where to find Interview Questions on HTML General? Here are some interview questions on HTML General: Do you use any tools when authoring new HTML documents? Do you use any tools when converting HTML documents to XHTML? How to validate your XHTML documents? How comfortable are you with writing XHTML...
2017-02-28, 1582🔥, 0💬

Introduction of HTML Inline Elements
What Are XHTML Inline Elements? Inline elements are XHTML elements that can be used together with character data to form lines of paragraph blocks. Here are some basic rules about inline elements: Inline elements are usually used as sub-elements of block elements. Some inline elements have empty con...
2017-08-03, 1580🔥, 0💬

HTML 'sub' and 'sup' Tag/Element
What Are HTML "sub" and "sup" Tags/Elements? "sub" and "sup" elements are inline elements that you can use to specify text to be treated as subscript and superscript respectively. Here are basic rules about "sub" and "sup" elements: "sub" and "sup" elements are inline elements. "sub" and "sup" eleme...
2017-04-28, 1571🔥, 0💬

Validating XHTML 1.0 Documents Online
How To Validate XHTML 1.0 Documents Online? If you have just finished a new XHTML document, and you want to make sure that confirms with the XHTML specification, you can use the XHTML online validator at http://validator.w3.org/ . There are 3 ways you can use this validator: By URL - Specify the URL...
2024-01-15, 1549🔥, 1💬

URL Starts with Path or File name
What Happens If a URL Starts with Path or File name? If a URL starts with a path name, the browser will borrow the protocol name, the host name, and the port number from the URL of the current document to make up the missing parts. For example, if the following URL is used in this document you are v...
2017-07-07, 1538🔥, 0💬

HTML 'table' Element Attributes
What Are the Attributes of a "table" Element? A "table" element may have the following commonly used attributes: "summary" - Specifies a text string as the summary of the table. "width" - Specifies the width of the table. "border" - Specifies the border width. "frame" - Specifies how the outer borde...
2017-05-13, 1535🔥, 0💬

HTML In-line Elements and Tags
Where to find tutorials of introduction to XHTML 1.0 In-line Elements and Tags? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML In-line Elements and Tags. Clear answers are provided with tutorial exercises on inline element...
2017-08-03, 1528🔥, 0💬

HTML 'code' Tag/Element
What Is an HTML "code" Tag/Element? An "code" element is an inline element that you can use to specify text to be treated as computer code. Here are basic rules about "code" elements: "code" elements are inline elements. "code" elements can not be used at block level. Contents of "code" elements wil...
2017-04-28, 1525🔥, 0💬

Structure of a URL
What Is the Structure of a URL? The structure of a URL is defined by the URL specification, see http://www.ietf.org/rfc/rfc239 6.txt. Generally, a URL consists of 7 parts: Protocol Name - Identifies the communication protocol through which this resource is made available, like "http://" or "ftp://"....
2017-07-07, 1520🔥, 0💬

Defining an HTML Hyper Link
How To Define a Hyper Link? If you want to define a hyper link in your HTML document, you need to use an "a" element with the "href" attribute. Here are basic rules about defining a hyper link with "a" element: An "a" element with the "href" attribute defines a hyper link. The "href" attribute is us...
2017-07-15, 1518🔥, 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, 1505🔥, 0💬

Introduction of HTML Element Content Syntax
Where to find tutorials of introduction to HTML element content syntax and basics rules? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML element content syntax and basics rules. Clear answers are provided with tutorial exer...
2017-07-30, 1503🔥, 0💬

What Is a URL
What Is a URL? A URL (Uniform Resource Locator) is a reference name representing a location of a Web document or other resource that is available on the Internet. Here are some examples of URLs: "http://www.w3.org/" "http://dev.fyicenter.com/faq/ xhtml/""http://www.google.com/search? hl=en&amp;q=...
2017-07-15, 1500🔥, 0💬

Client-Side Image Maps in HTML
What Is a Client-Side Image Map? A client-side image map is an image defined with the "ismap" attribute and the "usemap" attribute. When a client-side image map is clicked in a browser window, the browser will take mouse coordinates and map them to a predefined image map entry, to retrieve a target ...
2017-03-22, 1498🔥, 0💬

HTML Line Break 'br' Tag/Element
What Is an HTML "br" Tag/Element? A "br" element is an inline element that you can use to specify a line break in the paragraph. Here are basic rules about "br" elements: "br" elements are inline elements. "br" elements can not be used at block level. "br" elements are empty content elements. Most b...
2017-07-21, 1493🔥, 0💬

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