article.html 631 B

123456789101112131415161718192021222324252627282930313233
  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>Paragraph</p>
  12. <p><strong>Bold</strong> <i>Italic</i> <a href="https://ckeditor.com">Link</a></p>
  13. <ul>
  14. <li>UL List item 1</li>
  15. <li>UL List item 2</li>
  16. </ul>
  17. <ol>
  18. <li>OL List item 1</li>
  19. <li>OL List item 2</li>
  20. </ol>
  21. <figure class="image image-style-side">
  22. <img alt="bar" src="sample.jpg">
  23. <figcaption>Caption</figcaption>
  24. </figure>
  25. <blockquote>
  26. <p>Quote</p>
  27. <ul>
  28. <li>Quoted UL List item 1</li>
  29. <li>Quoted UL List item 2</li>
  30. </ul>
  31. <p>Quote</p>
  32. </blockquote>
  33. </div>