-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
31 lines (31 loc) · 782 Bytes
/
test.html
File metadata and controls
31 lines (31 loc) · 782 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Snipsl Writer tool</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/tinymce/tinymce.js"></script>
<script>
tinymce.init(
{
selector: '#editor',
menubar: false,
statusbar: false,
autoresize_min_height: 500,
plugins: [
"lists preview fullscreen autoresize"
],
toolbar: 'bold italic fullscreen'
}
);
</script>
</head>
<body>
<div id="app">
<div class="page">
<textarea id="editor"></textarea>
</div>
</div>
</body>
</html>