Get started with quill CDN

BSD-3-Clause licensed

Open-source Quill library creates rich text editors in web apps.

Tags:
  • editor
  • rich text
  • wysiwyg

Stable version

Copied!

How to start using quill CDN


<!DOCTYPE html>
<html>
<head>
  <link href="https://cdn.quilljs.com/1.3.7/quill.snow.css" rel="stylesheet">
  <script src="https://cdn.cdnhub.io/quill/1.3.7/quill.min.js"></script>
  <style>
    #editor { height: 300px; }
  </style>
</head>
<body>
  <div id="editor"></div>
  <script>
    const quill = new Quill('#editor', {
      theme: 'snow' // or 'bubble'
    });
  </script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!

All versions