how to make a content editor or cms editor using Ckeditor API
![]() |
Rich Text Editor, txtid
Editor toolbars
Press ALT 0 for help
â—¢Elements path CKEditor 4
copy and paste the code you will get same result
To start using CKEditor 4 on your website, add a single <script> tag to your HTML page:
<script src="https://cdn.ckeditor.com/4.19.0/standard/ckeditor.js"></script>
Quick example:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CKEditor</title>
<script src="https://cdn.ckeditor.com/4.19.0/standard/ckeditor.js"></script>
</head>
<body>
<textarea name="editor1"></textarea>
<script>
CKEDITOR.replace( 'editor1' );
</script>
</body>
</html>
No comments