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

Classic editor

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

Inline editor

This is some sample content.

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

Balloon 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.