1 | <!DOCTYPE html> |
---|
2 | <!-- |
---|
3 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. |
---|
4 | For licensing, see LICENSE.md or http://ckeditor.com/license |
---|
5 | --> |
---|
6 | <html> |
---|
7 | <head> |
---|
8 | <title>#11283</title> |
---|
9 | <meta charset="utf-8"> |
---|
10 | <script src="../ckeditor.js"></script> |
---|
11 | <link href="sample.css" rel="stylesheet"> |
---|
12 | </head> |
---|
13 | <body> |
---|
14 | <h1 class="samples"> |
---|
15 | #11283 |
---|
16 | </h1> |
---|
17 | <form action="sample_posteddata.php" method="post"> |
---|
18 | <textarea cols="80" id="editor1" name="editor1" rows="10"> |
---|
19 | <div style="text-align: center;"><img alt="email header" src="assets/sample.jpg"></div> |
---|
20 | </textarea> |
---|
21 | <script> |
---|
22 | |
---|
23 | CKEDITOR.replace( 'editor1', { |
---|
24 | extraPlugins: 'image2' |
---|
25 | } ); |
---|
26 | |
---|
27 | </script> |
---|
28 | </form> |
---|
29 | </body> |
---|
30 | </html> |
---|