Froala Editor Base
This is a base example of Froala Editor. Be sure to include and plugins (JS and CSS) from the CDN: https://cdnjs.com/libraries/froala-editor
HTML
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/froala-editor/2.9.0/css/froala_editor.pkgd.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/froala-editor/2.9.0/js/froala_editor.pkgd.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<form>
<textarea id="edit" name="content"></textarea>
</form>
JavaScript
$('#edit').froalaEditor({
toolbarButtons: ['formatOL', 'formatUL'],
iconsTemplate: 'font_awesome_5',
});