--- # Scope: # * TL;DR I want to run CKEditor 5. title: Quick start category: builds-guides order: 30 --- Creating an editor using CKEditor 5 build is very simple and in short can be described in two steps: 1. Load the desired editor via ` ``` Call the {@link module:editor-classic/classiceditor~ClassicEditor#create `ClassicEditor#create`} method. ``` ``` ### Example ``` CKEditor 5 - Classic editor

Classic editor

``` ## Inline editor In your HTML page add an element that CKEditor should make editable: ```
``` Load CKEditor 5, the inline editor build (here [CDN](https://cdn.ckeditor.com/) location is used): ``` ``` Call the {@link module:editor-inline/inlineeditor~InlineEditor#create `InlineEditor#create`} method. ``` ``` ### Example ``` CKEditor 5 - Inline editor

Inline editor

This is some sample content.
``` ## Balloon toolbar editor In your HTML page add an element that CKEditor should make editable: ```
``` Load CKEditor 5, the balloon toolbar editor build (here [CDN](https://cdn.ckeditor.com/) location is used): ``` ``` Call the {@link module:editor-balloon-toolbar/balloontoolbareditor~BalloonToolbarEditor#create `BalloonToolbarEditor#create`} method. ``` ``` ### Example ``` CKEditor 5 - Balloon toolbar editor

Balloon toolbar editor

This is some sample content.
``` ## Next steps Check the {@link builds/guides/integration/configuration Configuration guide} to learn how to configure the editor, e.g. change the default toolbar.