Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <style>
- li {
- padding-left: 15px;
- }
- ol {
- background: #ff9999;
- padding: 20px;
- }
- ul {
- background: #3399ff;
- padding: 20px;
- }
- ol li {
- background: #ffe5e5;
- margin-left: 25px;
- }
- ul li {
- background: #cce5ff;
- margin: 5px;
- }
- </style>
- </head>
- <body>
- <h1>Styling Lists With Colors:</h1>
- <ol>
- <li>Coffee</li>
- <li>Tea</li>
- <li>Coca Cola</li>
- </ol>
- <ul>
- <li>Coffee</li>
- <li>Tea</li>
- <li>Coca Cola</li>
- </ul>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement