custom-heading-elements.html 249 B

123456789101112
  1. <style>
  2. .fancy {
  3. color: #ff0050;
  4. }
  5. </style>
  6. <div id="snippet-custom-heading-elements">
  7. <h1>Heading 1</h1>
  8. <h2>Heading 2</h2>
  9. <h2 class="fancy">Fancy Heading 2</h2>
  10. <p>This is <a href="https://ckeditor5.github.io">CKEditor 5</a>.</p>
  11. </div>