-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathdemo.html
34 lines (34 loc) · 1.14 KB
/
demo.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
<!DOCTYPE HTML>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="editor.js"></script>
<script>
$(document).ready(function() {
$("#txtEditor").Editor();
});
</script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link href="editor.css" type="text/css" rel="stylesheet"/>
<title>LineControl | v1.1.0</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<h2 class="demo-text">LineControl Demo</h2>
<div class="container">
<div class="row">
<div class="col-lg-12 nopadding">
<textarea id="txtEditor"></textarea>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid footer">
<p class="pull-right">© Suyati Technologies <script>document.write(new Date().getFullYear())</script>. All rights reserved.</p>
</div>
</body>
</html>