Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>HTML Lists</title>
- </head>
- <body>
- <ol type="I">
- <li><span>List Item 1</span></li>
- <ol type="a">
- <li>Nested item 1.1</li>
- <li>Nested item 1.2</li>
- </ol>
- <li><span>List item 2</span></li>
- <ol type="1">
- <li>Nested item 2.1</li>
- <li>Nested item 2.2</li>
- <ul type="circle">
- <li>Nested item 2.2.1</li>
- <li>Nested item 2.2.2</li>
- <li>Nested item 2.2.3</li>
- </ul>
- <li>Nested item 2.3</li>
- </ol>
- <li><span>List Item 3</span></li>
- <ul type="disk">
- <li>Nested Item 3.1</li>
- <li>Nested Item 3.1</li>
- <li>Nested Item 3.1</li>
- </ul>
- </ol>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement