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

Top Level Structure of XHTML 1.0 Documents
What is the Top Level Structure of an XHTML 1.0 Document? The top level structure of a XHTML 1.0 document consists of three parts: XML processing instruction - Provides XML version information and character set declaration. Document type declaration - Provides the document type and version informati...
2023-11-06, 1359🔥, 0💬

XHTML 1.0 Document Types
How Many Document Types Defined in XHTML 1.0? 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: &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "ht...
2023-11-06, 1263🔥, 0💬

What Is an HTML Element?
What Is an HTML Element? An HTML element is the basic building block of an HTML document. An HTML element has the following features: An HTML element must have a name. An HTML element may have zero or more attributes. An HTML element may or may not have any content. Here is a good example of an HTML...
2023-11-06, 1228🔥, 0💬

Who Developed XHTML 1.0?
Who Developed XHTML? XHTML was developed by W3C HTML Working Group with Steven Pemberton as the group chair.   ⇒ Number of Tags Defined in XHTML 1.0? ⇐ What Is XHTML 1.0? ⇑ Introduction of XHTML 1.0 ⇑⇑ HTML Tutorials
2023-11-06, 1162🔥, 0💬

Number of Tags Defined in XHTML 1.0?
How Many Tags Are Defined in 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 input ins kbd label legend li link map meta n...
2023-11-06, 1046🔥, 0💬

Smallest Valid XHTML 1.0 Document
What is a Smallest Valid XHTML 1.0 Document? If you are interested to see the smallest, but valid, XHTML document, look at this one: &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/xhtml1-strict.dtd"&gt;&l...
2023-11-02, 1334🔥, 0💬

Tools for Writing XHTML 1.0 Documents
What Tools can I Use to Write XHTML 1.0 Documents? The basic tool you need to write XHTML documents is any text editor, like notepad on Windows system, or vi on Unix system. If you are looking for some advanced tools to help you writing XHTML documents, you can select any one from the following thre...
2023-11-02, 1317🔥, 0💬

HTML Tag and Attribute Syntax
Where to find tutorials of introduction to HTML tag and attribute Syntax? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML tag and attribute Syntax. Clear answers are provided with tutorial exercises on XHTML elements, openi...
2023-11-02, 1315🔥, 0💬

Tools for Viewing XHTML 1.0 Documents
What Tools can I Use to View XHTML Documents? The basic tool you need to view XHTML documents is any Web browser, like Google Chrome, Internet Explorer (IE) or Mozilla FireFox. The following tutorial shows you how to view a XHTML document with : Write an XHTML document and save it as hello.html. Run...
2023-11-02, 1140🔥, 0💬

Attributes Required by HTML Elements
What Is a Required Attribute in an HTML element? A required attribute is an attribute required by the HTML element. When you write an HTML element, you must include all attributes required by this element in the opening tag. Optional attributes can be omitted in the opening tag. Here are some exampl...
2023-09-26, 1164🔥, 1💬

Quoting HTML Element Attribute Values
How To Quote Element Attribute Values Properly? You know that attribute values must be quoted. But how to attribute values properly? Here are some basic rules you should remember: An attribute value must be quoted. An attribute value can be quoted with double quotes as "...". An attribute value can ...
2023-09-23, 1254🔥, 0💬

Ampersand Sign in HTML Attribute Values
How To Write Ampersand Sign in Attribute Values? If you need enter an ampersand sign in an attribute value, you can not enter it directly. You must replace it with entity: &amp;amp;. Here are some interesting examples of quoted attribute values: &lt;img src="tt.gif" alt="Tutorials &amp;a...
2023-09-23, 1220🔥, 0💬

Predefined HTML Attribute Values
What Are Predefined Attribute Values for an HTML attribute? Some HTML attributes have predefined values. If an attribute has predefined values, you must use one of the predefined values. For example, attribute "valign" of element "td" has 4 predefined values "baseline", "bottom", "middle", and "top"...
2023-09-23, 1212🔥, 0💬

Attribute Name Case Sensitive
Is Attribute Name Case Sensitive? Yes, XHTML attribute names are case sensitive. You must write all attribute names in lower case letters. Here are some valid and invalid attribute names: &lt;a href="http://dev.fyicenter.com "&gt;- Valid attribute name. &lt;a HREF="http://dev.fyicenter.c.. .
2023-09-23, 1188🔥, 0💬

Mixing Images with Text in a Paragraph in HTML
Can I Mix Images with Text in a Paragraph? 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;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PU...
2023-08-09, 1172🔥, 0💬

HTML 'p' Tag/Element
What Is an HTML "p" Tag/Element? A "p" element is a block level element that can be used directly as a sub-element in the body element. You can use "p" elements to specify paragraphs of text and in-line elements. Here are basic rules about p elements: "p" elements are mixed content elements. "p" ele...
2023-08-09, 1128🔥, 0💬

HTML 'body' Element Attributes
What Attributes Are Allowed in the HTML Body Element? 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 "bgcolor" can be used to specify the background colo...
2023-08-09, 1124🔥, 0💬

HTML 'body' Sub-Elements
What Elements Are Allowed as Body Sub-Elements? 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 be entered inside the body element. Strict HTML docume...
2023-08-09, 1092🔥, 0💬

Incorrect HTML 'body' Elements
What Is Wrong with My HTML "body" Elements? If you are having trouble with your body elements, it could be caused by one of the following common mistakes: &lt;!-- Text can not be used in body directly --&gt; &lt;body&gt; Hello world! &lt;/body&gt; &lt;!-- "title" is not a...
2023-08-09, 1044🔥, 0💬

Controlling Line Breaks in a Paragraph in HTML
How To Control Line Breaks in a Paragraph? 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 line, you can use the "br" elements. Below is a good tuto...
2023-08-03, 1042🔥, 0💬

Highlight Part of a Paragraph in HTML
How To Highlight One Part of a Paragraph? If you want to highlight 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; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Str...
2023-08-03, 1110🔥, 0💬

Getting Extra Space between Paragraphs in HTML
How To Get Extra Space between Paragraphs? 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; entity. Note that a true empty paragraph will not give any ...
2023-08-03, 1078🔥, 0💬

Incorrect HTML 'p' Elements
What Is Wrong with My "p" Elements? If you are having trouble with your p elements, it could be caused by one of the following common mistakes: &lt;!-- Missing closing tags --&gt; &lt;body&gt; &lt;p&gt;I love the way you look at me. &lt;p&gt;I love the way you kiss me...
2023-08-03, 1054🔥, 0💬

HTML 'pre' Tag/Element
What Is a "pre" Tag/Element? 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 basic rules about pre elements: "pre" elements are mixe...
2023-08-03, 1052🔥, 0💬

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