| 1234567891011121314151617181920212223 |
- <head>
- <style>
- body {
- max-width: 800px;
- margin: 20px auto;
- }
- </style>
- </head>
- <div id="editor">
- <h2>Heading 1</h2>
- <p style="margin-right:1.5em;">Paragraph indented 1.5em</p>
- <p style="margin-right:30px;">Paragraph indented 30px</p>
- <p style="margin:0 40px 0 0;">Paragraph indented with margin: 0 40px 0 0</p>
- <p><strong>Bold</strong> <i>Italic</i> <a href="https://ckeditor.com">Link</a></p>
- <blockquote>
- <p>Quote</p>
- <ul>
- <li>Quoted UL List item 1</li>
- <li>Quoted UL List item 2</li>
- </ul>
- <p>Quote</p>
- </blockquote>
- </div>
|