Advertisement
bebo231312312321

Untitled

Jun 26th, 2023
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="UTF-8" />
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7.     <title>Document</title>
  8.   </head>
  9.   <!-- <style>
  10.     .upper-roman{
  11.     list-style:upper-roman;
  12. }
  13. .lower-latin{
  14.     list-style: lower-latin;
  15. }
  16. .number-decimal{
  17.     list-style:decimal;
  18. }
  19. .circle{
  20.     list-style: circle;
  21. }
  22. .disc{
  23.     list-style: disc;
  24. }
  25.  
  26.  
  27.   </style> -->
  28.     <body>
  29.         <ol type = "I">
  30.  
  31.             <li>List item 1
  32.                 <ol type = "a">
  33.        
  34.                     <li>Nested item 1.1</li>
  35.                     <li>Nested item 1.2</li>
  36.                 </ol>
  37.             </li>
  38.             <li>List item 2
  39.                 <ol type = "1">
  40.      
  41.                     <li>Nested item 2.1</li>
  42.                     <li>Nested item 2.2</li>
  43.                     <ul type = "circle">
  44.                  
  45.                         <li>Nested item 2.2.1</li>
  46.                         <li>Nested item 2.2.2</li>
  47.                         <li>Nested item 2.2.3</li>
  48.                     </ul>
  49.                     <li>Nested item 2.3</li>
  50.                 </ol>
  51.  
  52.             </li>
  53.             <li>List item 3
  54.                 <ul type = "disc">
  55.                  
  56.                     <li>Nested item 3.1</li>
  57.                     <li>Nested item 3.2</li>
  58.                     <li>Nested item 3.3</li>
  59.                 </ul>
  60.  
  61.             </li>
  62.         </ol>
  63.     </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement