-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
executable file
·50 lines (41 loc) · 2.09 KB
/
example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<!--suppress ALL -->
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link crossorigin="anonymous" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity=
"sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title></title>
</head>
<body>
<div class="container">
<h1>Happy Coding Alex</h1>
<textarea id='editor1'>Usable Spell-check-As-You-Type functionallity thatt everyone is familiar with.
Fromm our perpsective, the ideel user experiense for CKEditor spellcheck is that youur users don't evenn know that they aree ussing NanoSpell Spellchecker for CKE- it jsut werks.... automaticaly and seemlessly with CKEditor 4.</textarea>
</div>
<script src="https://cdn.ckeditor.com/4.4.5.1/standard/ckeditor.js"> </script>
<script src="nanospell/autoload.js"></script>
<script>
CKEDITOR.replace( 'editor1');
nanospell.ckeditor('editor1',{
dictionary:"en",
server:"php" // can be php, asp, asp.net or java
});
</script>
<!--just for boostrap-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"> </script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</body>
</html>