| 1234567891011121314151617181920212223242526272829303132333435 |
- <head>
- <style>
- body {
- max-width: 800px;
- margin: 20px auto;
- }
- </style>
- </head>
- <div id="editor">
- <h2>Heading 1</h2>
- <p style="margin-left:1.5em;">Paragraph indented 1.5em</p>
- <p style="margin-left:30px;">Paragraph indented 30px</p>
- <p style="margin:0 0 0 40px;">Paragraph indented with margin: 0 0 0 40px</p>
- <p><strong>Bold</strong> <i>Italic</i> <a href="https://ckeditor.com">Link</a></p>
- <ul>
- <li>UL List item 1</li>
- <li>UL List item 2</li>
- </ul>
- <ol>
- <li>OL List item 1</li>
- <li>OL List item 2</li>
- </ol>
- <figure class="image image-style-side">
- <img alt="bar" src="sample.jpg">
- <figcaption>Caption</figcaption>
- </figure>
- <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>
|