Advertisement
lemansky

Untitled

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