Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <style>
- ul.a {
- list-style-type: circle;
- }
- ul.b {
- list-style-type: square;
- }
- ol.c {
- list-style-type: lower-alpha;
- }
- </style>
- </head>
- <body>
- <p>Example of unordered lists:</p>
- <ul class="a">
- <li>Coffee</li>
- <li>Tea</li>
- <li>Coca Cola</li>
- </ul>
- <ul class="b">
- <li>Coffee</li>
- <li>Tea</li>
- <li>Coca Cola</li>
- </ul>
- <p>Example of ordered lists:</p>
- <ol class="c">
- <li>Coffee</li>
- <li>Tea</li>
- <li>Coca Cola</li>
- </ol>
- <ol>
- <li>Coffee</li>
- <li>Tea</li>
- <li>Coca Cola</li>
- </ol>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement