21 lines
633 B
PHP
21 lines
633 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>A Simple Page with CKEditor</title>
|
|
<!-- Make sure the path to CKEditor is correct. -->
|
|
<script src="ckeditor/ckeditor.js"></script>
|
|
</head>
|
|
<body>
|
|
<form>
|
|
<textarea name="editor1" id="editor1" rows="10" cols="80">
|
|
|
|
</textarea>
|
|
<script>
|
|
// Replace the <textarea id="editor1"> with a CKEditor
|
|
// instance, using default configuration.
|
|
CKEDITOR.replace( 'editor1' );
|
|
</script>
|
|
</form>
|
|
</body>
|
|
</html> |