list.html 565 B

12345678910111213141516171819202122232425
  1. <head>
  2. <link rel="stylesheet" href="/theme/ckeditor.css">
  3. </head>
  4. <div id="editor">
  5. <p>This is a test for list feature.</p>
  6. <p>Some more text for testing.</p>
  7. <ul>
  8. <li>Bullet list item 1</li>
  9. <li>Bullet list item 2</li>
  10. <li>Bullet list item 3</li>
  11. <li>Bullet list item 4</li>
  12. <li>Bullet list item 5</li>
  13. <li>Bullet list item 6</li>
  14. <li>Bullet list item 7</li>
  15. <li>Bullet list item 8</li>
  16. </ul>
  17. <p>Paragraph.</p>
  18. <p>Another testing paragraph.</p>
  19. <ol>
  20. <li>Numbered list item 1</li>
  21. </ol>
  22. <ul>
  23. <li>Another bullet list</li>
  24. </ul>
  25. </div>