---
category: features
menu-title: HTML embed
---
# HTML embed
The {@link module:html-embed/htmlembed~HtmlEmbed} plugin provides the possibility to insert a HTML codeinto the rich-text editor.
## Demo
Use the editor below to see the {@link module:html-embed/htmlembed~HtmlEmbed} plugin in action.
{@snippet features/html-embed}
## Installation
To add this feature to your rich-text editor, install the [`@ckeditor/ckeditor5-html-embed`](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-embed) package:
```plaintext
npm install --save @ckeditor/ckeditor5-html-embed
```
And add it to your plugin list configuration:
```js
import HtmlEmbed from '@ckeditor/ckeditor5-html-embed/src/htmlembed';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ HtmlEmbed, ... ],
toolbar: [ 'htmlEmbed', ... ],
} )
.then( ... )
.catch( ... );
```
Read more about {@link builds/guides/integration/installing-plugins installing plugins}.
### Security
TODO
Note: it's mentioned in the config.htmlEmbed.* options so if we'll decide to rename this section we'll need to change it there.
## Common API
The {@link module:html-embed/htmlembed~HtmlEmbed} plugin registers:
* the UI button component (`'htmlEmbed'`),
* the `'updateHtmlEmbed'` command implemented by {@link module:html-embed/updatehtmlembedcommand~UpdateHtmlEmbedCommand}.
* the `'insertHtmlEmbed'` command implemented by {@link module:html-embed/inserthtmlembedcommand~InsertHtmlEmbedCommand}.
The command can be executed using the {@link module:core/editor/editor~Editor#execute `editor.execute()`} method:
```js
editor.execute( 'htmlEmbed', { html: 'HTML to insert.' } );
```
We recommend using the official {@link framework/guides/development-tools#ckeditor-5-inspector CKEditor 5 inspector} for development and debugging. It will give you tons of useful information about the state of the editor such as internal data structures, selection, commands, and many more.
## Contribute
The source code of the feature is available on GitHub in https://github.com/ckeditor/ckeditor5/tree/master/packages/ckeditor5-html-embed.