<ol> Start of list, Default output is 1,2,3 etc   <lh>Website Tutorials</lh> Title of list   <li>Basic web design List elements   <li>Intermidiate web design   <li>Advanced web design </ol> End of list
Output
Website Tutorials
Basic web design
Intermidiate web design
Advanced web design
Using TYPE="A" Output is A,B,C,D Etc
Syntax
<ol TYPE="A"> Start of list, output is A,B,C etc   <lh>Website Tutorials</lh> Title of list   <li>Basic web design List elements   <li>Intermidiate web design   <li>Advanced web design </ol> End of list
Output
Website Tutorials
Basic web design
Intermidiate web design
Advanced web design
Using TYPE="a" Output is a,b,c,d Etc
Website Tutorials
Basic web design
Intermidiate web design
Advanced web design
Using TYPE="i" Output is i,ii,iii,iv Etc
Website Tutorials
Basic web design
Intermidiate web design
Advanced web design
Further lists
Using TYPE="I" Output is I,II,III,IV Etc
Website Tutorials
Basic web design
Intermidiate web design
Advanced web design
Further lists
An unordered list:
Syntax
<ul> Start of list   <lh>Website Tutorials</lh> Title of list   <li>Basic web design List elements   <li>Intermidiate web design   <li>Advanced web design </ul> End of list
Output
Website Tutorials
Basic web design
Intermidiate web design
Advanced web design
A definition List:
Syntax
<dl> Start of list   <dt>Basic web design Title of list   <dd>The best way to get started learning HTML.Corresponding definition   <dt>Intermidiate web design   <dd>Now you know the basics lets look at the next level.   <dt>Advanced web design   <dd>This is only for hardened HTML learners who have read the previous two catagorys. </dl> End of list
Output
Basic web design
The best way to get started learning HTML.
Intermidiate web design
Now you know the basics lets look at the next level.
Advanced web design
This is only for hardened HTML learners who have read the previous two catagorys.
An unordered nested List:
Syntax
<ul> Start of list   <lh>Website Tutorials</lh> Title of list   <li>Basic web design List elements   <li>Intermidiate web design     <ul> Start of nest      <li>Website layout and preparationNested list elements      <li>Image editing     </ul> End of nested list   <li>Advanced web design </ul> End of list
Output
Website Tutorials
Basic web design
Intermidiate web
Website layout and preparation
Image editing
Advanced web design
An ordered nested List:
Syntax
<ol TYPE="1"> Start of list   <li>Basic web design List elements   <li>Intermidiate web design     <ol TYPE="i"> Start of nest      <li>Website layout and preparationNested list elements      <li>Image editing     </ol> End of nested list   <li>Advanced web design </ol> End of list