JSFiddle - React, Tailwind, and code Playground

by Simon Price

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Quill Editor Example</title>
    <!-- Include Quill stylesheet -->
    <link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
    <style>
        /* Additional styling for editor container */
        #editor-container {
            height: 300px;
        }
    </style>
</head>
<body>
    <!-- Editor container -->
    <div id="editor-container"></div>
    
    <!-- Include Quill library -->
    <script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
    
    <script>
        // Initialize Quill editor
        var quill = new Quill('#editor-container', {
            theme: 'snow'  // Specify theme
        });
    </script>
</body>
</html>