rtl.html 559 B

1234567891011121314151617181920212223
  1. <head>
  2. <style>
  3. body {
  4. max-width: 800px;
  5. margin: 20px auto;
  6. }
  7. </style>
  8. </head>
  9. <div id="editor">
  10. <h2>Heading 1</h2>
  11. <p style="margin-right:1.5em;">Paragraph indented 1.5em</p>
  12. <p style="margin-right:30px;">Paragraph indented 30px</p>
  13. <p style="margin:0 40px 0 0;">Paragraph indented with margin: 0 40px 0 0</p>
  14. <p><strong>Bold</strong> <i>Italic</i> <a href="https://ckeditor.com">Link</a></p>
  15. <blockquote>
  16. <p>Quote</p>
  17. <ul>
  18. <li>Quoted UL List item 1</li>
  19. <li>Quoted UL List item 2</li>
  20. </ul>
  21. <p>Quote</p>
  22. </blockquote>
  23. </div>