HTML Tutorial: Lists
 
 

Can I mix lists?

Yes - the following text uses a mixture of ordered and unordered lists ...

 Steps Involved in Creating a Website

  1. Design
    • Identify audience
    • Decide on appropriate style, fonts, colours etc
  2. Decide Content
    • Use appropriate language
    • Blah Blah Blah
  3. Implement
    • Use web authoring tool
    • Tweek HTML only when necessary

And the code ...

     <OL>
       <LI> Design
        <UL>
           <LI> Identify Audience
           <LI> Decide on appropriate style, fonts, colours etc
         </UL>
         <LI> Decide Content
        <UL>
           <LI> Use Appropriate Language
           <LI> Blah blah blah
        </UL>
        <LI> Implement
         <OL>> 
          <LI> Use web authoring tool
          <LI> Tweek HTML only when necessary
       </UL>
     </OL>

Try it out yourself in the box below: