JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.1
[ckeditor.git] / _samples / skins.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
2 <!--\r
3 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.\r
4 For licensing, see LICENSE.html or http://ckeditor.com/license\r
5 -->\r
6 <html xmlns="http://www.w3.org/1999/xhtml">\r
7 <head>\r
8         <title>Skins - CKEditor Sample</title>\r
9         <meta content="text/html; charset=utf-8" http-equiv="content-type" />\r
10         <script type="text/javascript" src="../ckeditor.js"></script>\r
11         <script src="sample.js" type="text/javascript"></script>\r
12         <link href="sample.css" rel="stylesheet" type="text/css" />\r
13 </head>\r
14 <body>\r
15         <h1>\r
16                 CKEditor Sample\r
17         </h1>\r
18         <!-- This <div> holds alert messages to be display in the sample page. -->\r
19         <div id="alerts">\r
20                 <noscript>\r
21                         <p>\r
22                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
23                                 support, like yours, you should still see the contents (HTML data) and you should\r
24                                 be able to edit it normally, without a rich editor interface.\r
25                         </p>\r
26                 </noscript>\r
27         </div>\r
28         <form action="sample_posteddata.php" method="post">\r
29                 <p>\r
30                         "Kama" skin:<br />\r
31                         <textarea cols="80" id="editor_kama" name="editor_kama" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
32                         <script type="text/javascript">\r
33                         //<![CDATA[\r
34 \r
35                                 CKEDITOR.replace( 'editor_kama',\r
36                                         {\r
37                                                 skin : 'kama'\r
38                                         });\r
39 \r
40                         //]]>\r
41                         </script>\r
42                 </p>\r
43                 <p>\r
44                         "Office 2003" skin:<br />\r
45                         <textarea cols="80" id="editor_office2003" name="editor_office2003" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
46                         <script type="text/javascript">\r
47                         //<![CDATA[\r
48 \r
49                                 CKEDITOR.replace( 'editor_office2003',\r
50                                         {\r
51                                                 skin : 'office2003'\r
52                                         });\r
53 \r
54                         //]]>\r
55                         </script>\r
56                 </p>\r
57                 <p>\r
58                         "V2" skin:<br />\r
59                         <textarea cols="80" id="editor_v2" name="editor_v2" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
60                         <script type="text/javascript">\r
61                         //<![CDATA[\r
62 \r
63                                 CKEDITOR.replace( 'editor_v2',\r
64                                         {\r
65                                                 skin : 'v2'\r
66                                         });\r
67 \r
68                         //]]>\r
69                         </script>\r
70                 </p>\r
71         </form>\r
72         <div id="footer">\r
73                 <hr />\r
74                 <p>\r
75                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
76                 </p>\r
77                 <p id="copy">\r
78                         Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico\r
79                         Knabben. All rights reserved.\r
80                 </p>\r
81         </div>\r
82 </body>\r
83 </html>\r