-Annie-

HTML Lists

Sep 4th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.    <head>
  4.       <title>HTML Lists</title>
  5.    </head>
  6.    <body>
  7.       <p>Preceding Text</p>
  8.       <ol type="I">
  9.          <li>List Item 1
  10.          <ol type="a">
  11.             <li>Nested Item 1.1</li>
  12.             <li>Nested Item 1.2</li>
  13.          </ol>
  14.          </li>
  15.          <li>List Item 2
  16.          <ol type="1">
  17.             <li>Nested Item 2.1</li>
  18.             <li>Nested Item 2.2
  19.             <ul type="circle">
  20.                <li>Nested Item 2.2.1.
  21.                <li>Nested Item 2.2.2.
  22.                <ul type="square">
  23.                   <li>Nested Item 2.2.2.1.</li>
  24.                   <li>Nested Item 2.2.2.2.</li>
  25.                </ul>
  26.                </li>
  27.                <li>Nested Item 2.2.3.
  28.             </ul>
  29.             <li>Nested Item 2.3</li>
  30.          </ol>
  31.          </li>
  32.          <li>List Item 3
  33.          <ul type="disc">
  34.             <li>Nested Item 3.1</li>
  35.             <li>Nested Item 3.2</li>
  36.             <li>Nested Item 3.3</li>
  37.          </ul>
  38.          </li>
  39.       </ol>
  40.    </body>
  41. </html>
Add Comment
Please, Sign In to add comment