Pages UI
Search…
Pages UI
v5.0.1 - Pages HTML
Getting Started
Introduction
Layouts
Themes
Sass
Content
Apps
Calendar
Social
Email
API Reference
UI Elements
Color
Typopgrahy
Icons
Buttons
Notifications
Modals
Progressbar
Collapse
Tabs
Sliders
Treeview
Nestable
Form Elements
Checkboxes and Radio
Toggle
Typehead
Selectbox
Datepicker
Masked Input
Autonumeric
Quill Editor
Tags Input
File Upload
Form Layouts
Form Validation
Form Wizard
Charts
Maps
Google Maps
Vector Maps
Tables
Cards
Timeline
Views
Grid
Helpers
Troubleshooting
Browser Support
Change log
Legacy Docs
Other
Grunt
Gulp
Rails
Powered By
GitBook
Quill Editor
Please refer to
Quill Documentation
to learn about plugin options
Step one
Include the stylesheet quill.snow.css inside the
<head>
1
<
link
href
=
"
https://cdn.quilljs.com/1.3.6/quill.snow.css
"
rel
=
"
stylesheet
"
>
Copied!
Step two
Include the javascript file inside the
<body>
before core template script inclusions.
1
<
script
src
=
"
https://cdn.quilljs.com/1.3.6/quill.js
"
>
</
script
>
Copied!
Step three
Add the markup.
1
<
div
id
=
"
editor
"
>
2
<
p
>
Hello World!
</
p
>
3
<
p
>
Some initial
<
strong
>
bold
</
strong
>
text
</
p
>
4
<
p
>
<
br
>
</
p
>
5
</
div
>
Copied!
Step four
Apply the plugin.
Make sure you place the following script
below
all the pre-requisites mentioned in the Step two above.
1
<
script
>
2
var
quill
=
new
Quill
(
'#editor'
,
{
3
theme
:
'snow'
4
});
5
</
script
>
Copied!
Form Elements - Previous
Autonumeric
Next - Form Elements
Tags Input
Last modified
2yr ago
Copy link