| 123456789101112131415161718192021222324252627282930313233 |
- <head>
- <style>
- body {
- max-width: 800px;
- margin: 20px auto;
- }
- </style>
- </head>
- <div id="editor">
- <h2>Heading 1</h2>
- <p>Paragraph</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>
|