Advertisement
Atanasov_88

Untitled

Jan 30th, 2017
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>HTML Lists</title>
  6. </head>
  7. <body>
  8.  
  9. <ol type="I">
  10.     <li>
  11.         <span>List Item 1</span>
  12.         <ol type="a">
  13.             <li>Nested item 1.1</li>
  14.             <li>Nested item 1.2</li>
  15.         </ol>
  16.     </li>
  17.  
  18.     <li>
  19.         <span>List item 2</span>
  20.         <ol type="1">
  21.             <li>Nested item 2.1</li>
  22.             <li>
  23.                 Nested item 2.2
  24.                 <ul style= "list-style-type:circle">
  25.                     <li>Nested item 2.2.1</li>
  26.                     <li>Nested item 2.2.2</li>
  27.                     <li>Nested item 2.2.3</li>
  28.                 </ul>
  29.             </li>
  30.             <li>Nested item 2.3</li>
  31.         </ol>
  32.     </li>
  33.  
  34.     <li>
  35.         <span>List Item 3</span>
  36.         <ul style="list-style-type:disc">
  37.             <li>Nested Item 3.1</li>
  38.             <li>Nested Item 3.1</li>
  39.             <li>Nested Item 3.1</li>
  40.         </ul>
  41.     </li>
  42. </ol>
  43.  
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement