Quill

Quill is a powerful rich text editor built for compatibility and extensibility. For more details

HTML Code
<div id="editor" style="height:200px"></div>
Script
if (jQuery("#editor").length) {
  var quill = new Quill('#editor', {
  theme: 'snow'
  });
}