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

What Are the Values Submitted on Image Button Fields
What Are the Values Submitted on Image Button Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields An "image" button input field does not allow viewers to enter any input values directly. But if an "image" button is clicked, the mouse position on the image button will be submitted wi...
2007-05-12, 4706👍, 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, 4705👍, 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, 4704👍, 0💬

How To Use "password" Input Fields
How To Use "password" Input Fields? - XHTML 1.0 Tutorials - Understanding Forms and 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 ...
2007-05-12, 4703👍, 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, 4702👍, 0💬

What Is the Relation between XHTML and CSS
What Is the Relation between XHTML and CSS? - XHTML FAQs - Introduction To XHTML 1.0 CSS (Cascading Style Sheets) is a technical specification that allows XHTML document authors to attach formatting style sheets to XHTML documents. When XHTML documents are viewed as Web pages through Web browsers, t...
2007-05-12, 4702👍, 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, 4702👍, 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, 4701👍, 0💬

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, 4694👍, 0💬

How To Use "text" Input Fields
How To Use "text" Input Fields? - XHTML 1.0 Tutorials - Understanding Forms and 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...
2007-05-12, 4689👍, 0💬

What Happens If a URL Starts with Path or File name
What Happens If a URL Starts with Path or File name? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs 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 examp...
2007-05-12, 4683👍, 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, 4680👍, 0💬

What Are the XHTML Elements Defined with Sub-elements Contents
What Are the XHTML Elements Defined with Sub-elements Contents? - XHTML Tutorials - Introduction To Element Content Syntax The following XHTML elements are defined to use the sub-element content model: &lt;html&gt; - The root element of the document. &lt;head&gt; - Element to provide...
2007-05-12, 4678👍, 0💬

How To Use Different Markers on Ordered List Items
How To Use Different Markers on Ordered List Items? - XHTML 1.0 Tutorials - Understanding Lists and 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....
2007-05-11, 4678👍, 0💬

What Is a TABLE Tag/Element
What Is a TABLE Tag/Element? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells A "table" element is a block level element that you can use to present information in table of rows and columns. Here are basic rules about "table" elements: "table" elements are block elements. "table" element...
2007-05-11, 4677👍, 0💬

Who Developed XHTML
Who Developed XHTML? - XHTML FAQs - Introduction To XHTML 1.0 XHTML was developed by W3C HTML Working Group with Steven Pemberton as the group chair.
2007-05-12, 4675👍, 0💬

What Is a PRE Tag/Element
What Is a PRE Tag/Element? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags A pre element is a block level element that can be used directly as a sub-element in the body element. You can use pre elements to specify blocks of pre-formatted text with white space characters preserved. Here are bas...
2007-05-12, 4674👍, 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, 4666👍, 0💬

Hyper Links and Images
Hyper Links and Images - XHTML 1.0 - Interview Questions What is a hyper link? What is a URL? How to included an image in the middle of a sentence? How to place an image to the right side of a paragraph? What is an image map?
2007-05-12, 4664👍, 0💬

Are Tab Characters Preserved in a PRE Element
Are Tab Characters Preserved in a PRE Element? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags Yes. Tab characters are preserved in pre elements like other white space characters. Below is a good tutorial example of using "pre" elements: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE ht...
2007-05-12, 4664👍, 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, 4663👍, 0💬

What Is a Required Sub-element
What Is a Required Sub-element? - XHTML Tutorials - Introduction To Element Content Syntax A required sub-element is a sub-element that you must included in the parent element. Most sub-elements are optional. But there are some sub-elements that are required by their parent elements. Here are two go...
2007-05-12, 4658👍, 0💬

What Is an IMG Tag/Element
What Is an IMG Tag/Element? - XHTML 1.0 Tutorials - Understanding Inline Images and Image Maps A "img" element is an inline element that you can use to define an inline image to be included in a XHTML document. Here are basic rules about an "img" element: "img" elements are inline elements. A "img" ...
2007-05-12, 4657👍, 0💬

What Is a http-equiv META Tag/Element
What Is a http-equiv META Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags a http-equiv meta element is a special meta element that provides information equivalent to HTTP headers. A http-equiv meta element must include the "http-equiv" attribute as, http-equiv="Content-Ty...
2007-05-12, 4656👍, 0💬

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