| 1 | <!DOCTYPE html> |
|---|
| 2 | <html> |
|---|
| 3 | <head> |
|---|
| 4 | <meta charset="utf-8"> |
|---|
| 5 | <title>CKEditor</title> |
|---|
| 6 | <script src="http://cdn.ckeditor.com/4.5.11/standard/ckeditor.js"></script> |
|---|
| 7 | </head> |
|---|
| 8 | <body> |
|---|
| 9 | <textarea name="editor1"></textarea> |
|---|
| 10 | <textarea name="editor2"></textarea> |
|---|
| 11 | <textarea name="editor3"></textarea> |
|---|
| 12 | <textarea name="editor4"></textarea> |
|---|
| 13 | <textarea name="editor5"></textarea> |
|---|
| 14 | <script> |
|---|
| 15 | CKEDITOR.replace( 'editor1' ); |
|---|
| 16 | CKEDITOR.replace( 'editor2' ); |
|---|
| 17 | CKEDITOR.replace( 'editor3' ); |
|---|
| 18 | CKEDITOR.replace( 'editor4' ); |
|---|
| 19 | CKEDITOR.replace( 'editor5' ); |
|---|
| 20 | </script> |
|---|
| 21 | </body> |
|---|
| 22 | </html> |
|---|