1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
2 | <!-- |
---|
3 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. |
---|
4 | For licensing, see LICENSE.html or http://ckeditor.com/license |
---|
5 | --> |
---|
6 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
7 | <head> |
---|
8 | <title>Sample - CKEditor</title> |
---|
9 | <meta content="text/html; charset=utf-8" http-equiv="content-type"/> |
---|
10 | <script type="text/javascript" src="http://nightly.ckeditor.com/latest/ckeditor/ckeditor.js"></script> |
---|
11 | |
---|
12 | </head> |
---|
13 | <body> |
---|
14 | <!-- This <div> holds alert messages to be display in the sample page. --> |
---|
15 | <div id="alerts"> |
---|
16 | <noscript> |
---|
17 | <p> |
---|
18 | <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript |
---|
19 | support, like yours, you should still see the contents (HTML data) and you should |
---|
20 | be able to edit it normally, without a rich editor interface. |
---|
21 | </p> |
---|
22 | </noscript> |
---|
23 | </div> |
---|
24 | <!-- This <fieldset> holds the HTML that you will usually find in your |
---|
25 | pages. --> |
---|
26 | <form method="post"> |
---|
27 | <p> |
---|
28 | |
---|
29 | <textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p></textarea> |
---|
30 | <script type="text/javascript"> |
---|
31 | //<![CDATA[ |
---|
32 | CKEDITOR.replace( 'editor1', |
---|
33 | { |
---|
34 | language : 'he', |
---|
35 | skin : 'office2003' |
---|
36 | } ); |
---|
37 | |
---|
38 | //]]> |
---|
39 | </script> |
---|
40 | </p> |
---|
41 | <p> |
---|
42 | |
---|
43 | <textarea cols="80" id="editor2" name="editor2" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p></textarea> |
---|
44 | <script type="text/javascript"> |
---|
45 | //<![CDATA[ |
---|
46 | |
---|
47 | CKEDITOR.replace( 'editor2', |
---|
48 | { |
---|
49 | language : 'he', |
---|
50 | skin : 'office2003' |
---|
51 | } ); |
---|
52 | |
---|
53 | //]]> |
---|
54 | </script> |
---|
55 | </p> |
---|
56 | <p> |
---|
57 | |
---|
58 | <textarea cols="80" id="editor3" name="editor3" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p></textarea> |
---|
59 | <script type="text/javascript"> |
---|
60 | //<![CDATA[ |
---|
61 | |
---|
62 | CKEDITOR.replace( 'editor3', |
---|
63 | { |
---|
64 | language : 'he', |
---|
65 | skin : 'office2003' |
---|
66 | } ); |
---|
67 | |
---|
68 | //]]> |
---|
69 | </script> |
---|
70 | </p> |
---|
71 | </form> |
---|
72 | </body> |
---|
73 | </html> |
---|