Advertisement
Guest User

ordered.html

a guest
Apr 25th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.30 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Text Formatting with HTML and CSS</title>
  5. </head>
  6. <body>
  7.     <ol>
  8.         <li>List 1</li>
  9.         <li>List 2</li>
  10.         <li>List 3</li>
  11.         <li>List 4
  12.             <ul>
  13.                 <li>Sub List 4.1</li>
  14.                 <li>Sub List 4.2</li>
  15.             </ul>
  16.         </li>
  17.         <li>List 5</li>
  18.     </ol>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement