Form / Editors

Summernote

How To Use

Basic Use HTML
<textarea class="summernote" ></textarea>
Js Activation
$('.summernote').summernote({
    height: 250,
});

For more Information please follow the Official Documentation

Quill

Hello World!

Some initial bold text


How To Use

Basic Use HTML
<div class="quill"></div>
Js Activation
var quill = new Quill('.quill', {
    theme: 'snow'
});

For more Information please follow the Official Documentation