Advertisement
coasterka

#3HTMLLists

Jun 3rd, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>HTML Lists</title>
  5.     </head>
  6.     <body>
  7.         <p>Preceding Text</p>
  8.         <ol type = "I">
  9.             <li>List Item 1</li>
  10.             <ol type = "a">
  11.                 <li>Nested Item 1.1</li>
  12.                 <li>Nested Item 1.2</li>
  13.             </ol>
  14.             <li>List Item 2</li>
  15.             <ol type = "1">
  16.                 <li>Nested Item 2.1</li>
  17.                 <li>Nested Item 2.2</li>
  18.                 <ul type = "circle">
  19.                     <li>Nested Item 2.2.1</li>
  20.                     <li>Nested Item 2.2.2</li>
  21.                     <ul type = "square">
  22.                         <li>Nested Item 2.2.2.1</li>
  23.                         <li>Nested Item 2.2.2.2</li>
  24.                     </ul>
  25.                 <li>Nested Item 2.2.3</li>
  26.                 </ul>
  27.                 <li>Nested Item 2.3</li>
  28.             </ol>
  29.             <li>List Item 3</li>
  30.             <ul type = "disc">
  31.                 <li>Nested Item 3.1</li>
  32.                 <li>Nested Item 3.3</li>
  33.                 <li>Nested Item 3.3</li>
  34.                
  35.             </ul>
  36.         </ol>
  37.     </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement