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

What Are the XHTML Element Content Models
What Are the XHTML Element Content Models? - XHTML Tutorials - Introduction To Element Content Syntax There are 4 content models defined for XHTML elements: 1. EMPTY - No content. Nothing between the opening tag and the closing tag. For example: &lt;br/&gt; - "br" element has no content. &am...
2007-05-12, 5117👍, 0💬

What Is the Relation between XHTML and SGML
What Is the Relation between XHTML and SGML? - XHTML FAQs - Introduction To XHTML 1.0 SGML (Standard Generalized Markup Language) is a metalanguage in which one can define markup languages, like HTML, for documents. SGML is a descendant of IBM's Generalized Markup Language (GML), developed in the 19...
2007-05-12, 5109👍, 0💬

How Many Input Types Are Supported by INPUT Elements
How Many Input Types Are Supported by INPUT Elements? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields 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; - Pa...
2007-05-12, 5104👍, 0💬

What Is an Anchor (A) Tag/Element
What Is an Anchor (A) Tag/Element? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs An "a" element is an inline element that you can use to specify a hyper link in your XHTML document. An "a" element can also be used to define a bookmark in your XHTML document. Here are basic rules about "...
2007-05-12, 5101👍, 0💬

What Is a BLOCKQUOTE Tag/Element
What Is a BLOCKQUOTE Tag/Element? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags A blockquote element is a block level element that can be used directly as a sub-element in the body element. You can use blockquote elements to specify a block of paragraphs to be displayed in a quotation format...
2007-05-12, 5099👍, 0💬

What Is a Client-Side Image Map
What Is a Client-Side Image Map? - XHTML 1.0 Tutorials - Understanding Inline Images and Image Maps 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 ...
2007-05-12, 5095👍, 0💬

Table Elements
Table Elements - XHTML 1.0 - Interview Questions Can you place a "table" element inside a "p" element? What is a "tr" element? What is a "td" element? Can you place a "table" element inside a "td" element? Can you add text content into a "tr" element? What is "cellspacing"? What is "cellpadding"? Ho...
2007-05-12, 5094👍, 0💬

How To Control Line Breaks in a Paragraph
How To Control Line Breaks in a Paragraph? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags By default line breaks within a paragraph are controlled by the browser. Lines will be wrapped at the right edge of the display area of the paragraph. If you want to force a line break in middle of a lin...
2007-05-12, 5094👍, 0💬

What Is a Client-Side Image Map
What Is a Client-Side Image Map? - XHTML 1.0 Tutorials - Understanding Inline Images and Image Maps 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 ...
2007-05-12, 5093👍, 0💬

How Exactly White Space Characters Are Ignored
How Exactly White Space Characters Are Ignored? - XHTML Tutorials - Introduction To Element Content Syntax White space characters will be processed (ignored) based where they are located: White space characters will be ignored between block elements. White space characters will be preserved in eleme...
2007-05-12, 5089👍, 0💬

What Is the Author META Tag/Element
What Is the Author META Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The author meta element is a special meta element that provides information about the author of the XHTML document. The author meta element must include the "name" attribute as, name="author". Here is...
2007-05-12, 5089👍, 0💬

What Is the TITLE Tag/Element
What Is the TITLE Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The title element is the 4th element you need to learn. The title element is used to provide a text title to the XHTML document. Here are some rules about the head tag/element: The title element is a requir...
2007-05-12, 5087👍, 0💬

What Is an INPUT Tag/Element
What Is an INPUT Tag/Element? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields 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 us...
2007-05-12, 5086👍, 0💬

Block Elements
Block Elements - XHTML 1.0 - Interview Questions What is a block element? Is "h1" a block element? Is "br" a block element? Is "pre" a block element? Can you use a block element inside a "p" element? Can you use a block element inside a "li" element? Can you use a block element inside a "td" element...
2007-05-12, 5083👍, 0💬

What Is an OL Tag/Element
What Is an OL Tag/Element? - XHTML 1.0 Tutorials - Understanding Lists and List Items An "ol" element is block level element that can be used to define an ordered list, where items are displayed with leading sequential numbers. Here are basic rules about "ol" elements: "ol" elements are block level ...
2007-05-12, 5082👍, 0💬

What Are Other Inline Elements
What Are Other Inline Elements? - XHTML 1.0 Tutorials - Understanding In-line Elements and Tags Other inline elements that are not covered in this collection: a - Defining an anchor. img - Defining an image. map - Defining a clickable image map. input - Defining an input field in a form. select - De...
2007-05-12, 5075👍, 0💬

What Is a SCRIPT Tag/Element
What Is a SCRIPT Tag/Element? - XHTML 1.0 Tutorials - Understanding In-line Elements and Tags A "script" element is both an inline element and a block element that you can use to specify a script code to be executed by browsers. Here are basic rules about "script" elements: "script" elements are inl...
2007-05-12, 5072👍, 0💬

What Are the Attributes of a FORM Element
What Are the Attributes of a FORM Element? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields 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...
2007-05-12, 5070👍, 0💬

How To Use "image" Input Fields
How To Use "image" Input Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields An "image" input field is defined as &lt;input type="image" .../&gt;. "image" input fields can be used to create image buttons. If an image button is clicked, the mouse coordinates on the image and ...
2007-05-12, 5065👍, 0💬

Can Two Elements Partially Overlap Each Other
Can Two Elements Partially Overlap Each Other? - XHTML Tutorials - Introduction To Element Content Syntax No, two elements can not partially overlap each other. One element must be completely enclosed inside the other element. See the following two examples: &lt;!-- Valid: "em" is enclosed insid...
2007-05-12, 5061👍, 0💬

What Is a META Tag/Element
What Is a META Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags A meta element is optional child element of the head element. A meta element provides one piece of extra information about the XHTML document. Here are some important rules about meta elements: Meta elements a...
2007-05-12, 5061👍, 0💬

How To Get Extra Space between Paragraphs
How To Get Extra Space between Paragraphs? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags By default, browsers will give a predefined white space between two paragraphs. But if you want some extra white space between two paragraphs, you can enter an extra paragraph with a &amp;nbsp; entit...
2007-05-12, 5050👍, 0💬

Forms and Input Fields
Forms and Input Fields - XHTML 1.0 - Interview Questions 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 group of radio buttons? How to create a file upload input field?
2007-05-12, 5049👍, 0💬

What Is a LI Tag/Element
What Is a LI Tag/Element? - XHTML 1.0 Tutorials - Understanding Lists and List Items An "li" element is flow type element, which can be used only as a child element of "ol" and "ul" elements. An "li" element can be used to define a list item. Here are basic rules about "li" elements: "li" elements c...
2007-05-12, 5049👍, 0💬

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