Advertisement
Guest User

css.html

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