123 build A Website Home page.
123 build A Website How to make menu lists in HTML.

An ordered List:

Default list ouputs 1,2,3,4 Etc

Syntax

<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
  1. Basic web design
  2. Intermidiate web design
  3. 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
  1. Basic web design
  2. Intermidiate web design
  3. Advanced web design

Using TYPE="a" Output is a,b,c,d Etc

    Website Tutorials
  1. Basic web design
  2. Intermidiate web design
  3. Advanced web design

Using TYPE="i" Output is i,ii,iii,iv Etc

    Website Tutorials
  1. Basic web design
  2. Intermidiate web design
  3. Advanced web design
  4. Further lists

Using TYPE="I" Output is I,II,III,IV Etc

    Website Tutorials
  1. Basic web design
  2. Intermidiate web design
  3. Advanced web design
  4. 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


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


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

Output

  1. Basic web design
  2. Intermidiate web
    1. Website layout and preparation
    2. Image editing
  3. Advanced web design

123 build A Website Home page.
123 build A Website How to make menu lists in HTML.