-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.html
34 lines (32 loc) · 917 Bytes
/
editor.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 lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>富文本编辑器</title>
<link
href="https://cdn.quilljs.com/1.0.0/quill.snow.css"
rel="stylesheet"
/>
</head>
<body>
<!-- Create the toolbar container -->
<div id="toolbar">
<button class="ql-bold">Bold</button>
<button class="ql-italic">Italic</button>
</div>
<!-- Create the editor container -->
<div id="editor">
<p>Hello World!</p>
</div>
</body>
<script src="https://cdn.quilljs.com/1.0.0/quill.js"></script>
<!-- Initialize Quill editor -->
<script>
var editor = new Quill("#editor", {
modules: { toolbar: "#toolbar" },
theme: "snow",
});
</script>
</html>