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

What Is a Relative Path Name
What Is a Relative Path Name? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs A relative path name is a path name that starts without the leading slash "/". If a relative path name is used in a URL, the relative path name will be replaced with the current document path name appended with ...
2007-05-12, 4828👍, 0💬

What Is a Script Tag/Element
What Is a Script Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags A "script" element is an optional sub-element of the "head" and many other XHTML elements. If a "script" element is placed inside the "head" element, the specified script code will not be executed immediatel...
2007-05-12, 4624👍, 0💬

What Is a Style Tag/Element
What Is a Style Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags A "style" element is an optional sub-element of the "head" element. A "link" element is used to specify Cascading Style Sheet (CSS) entries. Here is good example of a style element: &lt;?xml version="1.0"...
2007-05-12, 4671👍, 0💬

How To Define a Hyper Link
How To Define a Hyper Link? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs If you want to define a hyper link in your XHTML 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...
2007-05-12, 5174👍, 0💬

What Are Inline Elements
What Are Inline Elements? - XHTML 1.0 Tutorials - Understanding In-line Elements and Tags 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-eleme...
2007-05-12, 4816👍, 0💬

What Are Hyper Links
What Are Hyper Links? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs A hyper link is a special text in an XHTML document defined with a hidden link to another resource on the Internet. While viewing the XHTML document, you can click the hyper link, the browser will follow the hidden link...
2007-05-12, 5120👍, 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, 4697👍, 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, 4689👍, 0💬

What Is the Latest XHTML Specification
What Is the Latest XHTML Specification? - XHTML FAQs - Introduction To XHTML 1.0 The latest XHTML specification is XHTML 1.0 second edition revised in August, 2002 by W3C. If you are professional XHTML developer, you should get a copy of this specification at http://www.w3.org/TR/xhtml1/ .
2007-05-12, 4975👍, 0💬

How Many Tags Are Defined in XHTML 1.0
How Many Tags Are Defined in XHTML 1.0? - XHTML FAQs - Introduction To XHTML 1.0 There are 77 tags defined in XHTML 1.0: a abbr acronym address area b base bdo big blockquote body br button caption cite code col colgroup dd del dfn div dl dt em fieldset form h1 h2 h3 h4 h5 h6 head hr html i img inpu...
2007-05-12, 4798👍, 0💬

How To Change Text Fonts for Some Parts of a Paragraph
How To Change Text Fonts for Some Parts of a Paragraph? - XHTML 1.0 Tutorials - Understanding DIV and SPAN elements If you want to change text fonts or colors for some parts of a paragraph, you can use "span" element with "style" attributes to specify font and color information as CSS properties. He...
2007-05-12, 4940👍, 0💬

What is the Second Level Structure of an XHTML Document
What is the Second Level Structure of an XHTML Document? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The second level structure of an XHTML document consists of two parts: Head element - Contains information about the current document, such as its title, keywords that may be usefu...
2007-05-12, 4562👍, 0💬

What is the Top Level Structure of an XHTML Document
What is the Top Level Structure of an XHTML Document? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The top level structure of a XHTML document consists of three parts: XML processing instruction - Provides XML version information and character set declaration. Document type declara...
2007-05-12, 4688👍, 0💬

How To Use DIV Elements to Change CSS Properties
How To Use DIV Elements to Change CSS Properties? - XHTML 1.0 Tutorials - Understanding DIV and SPAN elements As elements containers, "div" elements are perfect places to set CSS properties which will be applied to all elements in the container. Here is a tutorial example of how to set CSS propertie...
2007-05-12, 5328👍, 0💬

What Attributes Are Allowed in the Body Element
What Attributes Are Allowed in the Body Element? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags XHTML 1.0 strict version does not allow some attributes that were commonly used in early versions of HTML specification. For example: "background" can be used to specify a background image, and "bg...
2007-05-12, 4598👍, 0💬

What Elements Are Allowed as Body Sub-Elements
What Elements Are Allowed as Body Sub-Elements? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags The content model of the body element is sub-element only. Character data is not allowed as body element's content. You can only enter sub elements inside the body element. But not all elements can ...
2007-05-12, 4776👍, 0💬

How Many Document Types Defined in XHTML 1.0
How Many Document Types Defined in XHTML 1.0? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags There are only 3 document types are defined in XHTML 1.0: 1. Strict type: Only allow non-deprecated and non-frameset XHTML elements in this type. Strict type should be declared as below: &...
2007-05-12, 4671👍, 0💬

What Happens If the TITLE Element is Missing
What Happens If the TITLE Element is Missing? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags XHTML 1.0 requires you write the title element inside the head element. If you forget to include the title element, the XHTML validator will return an error to you. Here is how you can test t...
2007-05-12, 4820👍, 0💬

What Happens If a META Element Is Not Closed
What Happens If a META Element Is Not Closed? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags Meta tags, link tags and base tags must be closed in XHTML documents. If you forget to close them like the HTML format, you will get validation errors. Try the following tutorial sample XHTML...
2007-05-12, 5090👍, 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, 4712👍, 0💬

Can I Mix Images with Text in a Paragraph
Can I Mix Images with Text in a Paragraph? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags Yes. "img" elements are in-line elements. You can use "img" elements to mix images with text in any paragraph defined by a "p" element'. Below is a good tutorial example of image mixed with text: &lt...
2007-05-12, 4687👍, 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, 4748👍, 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, 4685👍, 0💬

How To Highlight One Part of a Paragraph
How To Highlight One Part of a Paragraph? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags If you want to hightlight one part of a paragraph, you can use the "strong" element with the "p" element. Below is a good tutorial example of using "strong" elements: &lt;?xml version="1.0" ?&gt; ...
2007-05-12, 4598👍, 0💬

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