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

What Is the Description META Tag/Element
What Is the Description META Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The description meta element is a special meta element that provides a short descript about the XHTML document. The description meta element must include the "name" attribute as, name="descriptio...
2007-05-12, 4467👍, 0💬

What is a Smallest Valid XHTML Dodument
What is a Smallest Valid XHTML Dodument? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags If you are interested to see the smallest, but valid, XHTML document, check this one: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://w...
2007-05-12, 4703👍, 0💬

Can Images Be Included in PRE Elements
Can Images Be Included in PRE Elements? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags Yes. In-line elements can be included pre elements. So images can be included in pre elements with img elements. Here is a good example of img elements in pre elements: &lt;?xml version="1.0" ?&gt; ...
2007-05-12, 4603👍, 0💬

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

What Is Wrong with This HEAD Element
What Is Wrong with This HEAD Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags If you have trouble passing the XHTML 1.0 validation on your head element, check the following common mistakes: Missing the title element. Not closing the meta element as &lt;meta ... &gt;. Y...
2007-05-12, 4501👍, 0💬

How To Write a HEAD Element Properly
How To Write a HEAD Element Properly? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The head element can not be empty. It must contain the title element, defined by the "title" tag. The head element may contain a number of other miscellaneous elements, like base, script, style, meta...
2007-05-12, 4447👍, 0💬

What Is the Robots META Tag/Element
What Is the Robots META Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The robots meta element is a special meta element that provides directives to robots who is visiting the XHTML document. The robots meta element must include the "name" attribute as, name="robots". Th...
2007-05-12, 4527👍, 0💬

What Is Wrong with My Body Elements
What Is Wrong with My Body Elements? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags 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! &am...
2007-05-12, 4679👍, 0💬

Can BLOCKQUOTE Elements Be Nested
Can BLOCKQUOTE Elements Be Nested? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags Yes. Blockquote elements can be directly nested. This allows you to include one quote inside another quote. Below is a good example of nested blockquote elements: &lt;?xml version="1.0" ?&gt; &lt;!DO...
2007-05-12, 4810👍, 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, 4740👍, 0💬

What Is Wrong with My P Elements
What Is Wrong with My P Elements? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags 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 loo...
2007-05-12, 4475👍, 0💬

What Are Heading Tags/Elements
What Are Heading Tags/Elements? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags Heading elements are block level elements that can be used directly as a sub-element in the body element. You can use heading elements to specify heading in different sizes. Here are basic rules about heading eleme...
2007-05-12, 4798👍, 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, 4774👍, 0💬

What Are Other Block Elements
What Are Other Block Elements? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags Other block elements that are not covered in this collection: ul, ol, dl - Specifying lists of items. table - Specifying tables of columns and rows. form - Specifying forms with input fields. script - Specifying cli...
2007-05-12, 4556👍, 0💬

What Is the HTML Tag/Element
What Is the HTML Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The html element is the first element you need to learn. The html element is used to enclose the entire HTML document. Here are some rules about the html element: The html element is the only top level eleme...
2007-05-12, 4530👍, 0💬

What Is the BODY Tag/Element
What Is the BODY Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The body element is the third element you need to learn. The body element is used to provide content of the XHTML document. Here are some rules about the body tag/element: The body element is a second level ...
2007-05-12, 4589👍, 0💬

What Is the HEAD Tag/Element
What Is the HEAD Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The head element is the second element you need to learn. The head element is used to provide information about the XHTML document. The head element should not be used to contain any contents of the XHTML do...
2007-05-12, 4681👍, 0💬

What Is a SPAN Tag/Element
What Is a SPAN Tag/Element? - XHTML 1.0 Tutorials - Understanding DIV and SPAN elements A "span" element is an inline element that you can use a container of inline elements and text contents. By default, browsers will do nothing on "span" elements unless specify some CSS properties in them. Here ar...
2007-05-12, 4532👍, 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, 4786👍, 0💬

Can DIV Elements Be Nested
Can DIV Elements Be Nested? - XHTML 1.0 Tutorials - Understanding DIV and SPAN elements 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: ...
2007-05-12, 5076👍, 0💬

What Is a DIV Tag/Element
What Is a DIV Tag/Element? - XHTML 1.0 Tutorials - Understanding DIV and SPAN elements A "div" element is a block element that you can use a container of flow elements (flow elements are really the superset of both inline elements and block elements). By default, "div" elements will be treated as pa...
2007-05-12, 5079👍, 0💬

What Are HR Tags/Elements
What Are HR Tags/Elements? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags A "hr" element is a block level element that can be used directly as a sub-element in the body element. You can use "hr" elements to specify horizontal rulers. Here are basic rules about "hr" elements: "hr" elements can...
2007-05-12, 4865👍, 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, 4714👍, 0💬

What Is a P Tag/Element
What Is a P Tag/Element? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags 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" el...
2007-05-12, 4664👍, 0💬

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