Mark Wilson I am the creator of TopXML. I am available for international and local (Australia) contracts. I am a Solution Architect/Business Analyst. I have worked in IT in several countries (NZ, Australia, South Africa, UK) building and training teams for government and very large non-governmental organizations. I am ex-Microsoft Consulting Services. I wrote the first book on Microsoft XML published in 2000 called XML Programming with VB and ASP. Most recently I have been building tools for the SEO industry. Ask me for a 37 point SEO health-checkup for your website.
First posted :
03/24/2008
Times viewed :
2919
The <li> Tag (XHTML Reference)
Introduction
The <li> (list) tag is used to create lists. It is a
start element to define a list block and its mostly used with the <ol>
(ordered list) tag or with the <ul> (unordered list) tag.
Example
<ul>
<li>XML</li>
<li>XPath</li>
<li>XSL</li>
</ul>
<ol>
<li>XML</li>
<li>XPath</li>
<li>XSL</li>
</ol>
Output
Attributes
Name:
Description:
type
Specifies the type to be used left from the text. It can
be one of the following options.
A = Displays A, B, C …
a = Displays a, b,
c …
I = Displays I, II, III …
I = Displays i, ii, iii …
1 = Displays 1, 2, 3
disc = Displays file symbol
square = Displays square symbol
circle = Displays circle symbol
value
This value can be used in the <li> tag to start a
new value. For example:
…
<li value=”10”>
This example will start the next list value from 10, no matter what the
values above that are.
start
You can use the start attribute in the <ol> tag to
define a start value.