-
Notifications
You must be signed in to change notification settings - Fork 67
/
index.html
79 lines (77 loc) · 2.03 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Editor with Bottom Toolbar user interface</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="demo.css" />
<link rel="stylesheet" href="content.css" />
</head>
<body>
<div class="header-wrapper">
<h1>Editor with Bottom Toolbar user interface</h1>
</div>
<div class="editor-wrapper">
<div id="cke5-user-interface-bottom-toolbar-demo">
<div id="cke5-user-interface-bottom-toolbar-demo-content">
<div id="editor-content">
<p>Hi Arjun,</p>
<p>I think I found the right editor for our application! 🎉</p>
<p>
It has
<strong>tons of features</strong>
and a
<strong>fantastic API</strong>
to add customizations that we need.
<a
target="_blank"
rel="noopener noreferrer"
href="https://ckeditor.com/"
>Check it out</a
>
and let’s discuss it on the catchup call tomorrow.
</p>
<p>
Cheers,
<br />
Emma
</p>
<hr />
<p>
<img
class="image_resized image-style-align-left"
style="width: 65px"
src="https://ckeditor.com/assets/images/ckdemo/editor-types/fabulous.png"
alt="Fabulous Dummy App logo"
/>
<a
target="_blank"
rel="noopener noreferrer"
href="https://fabulousdummyapp.com/"
>
<span style="color: hsl(0, 0%, 60%)">
<strong>Fabulous Dummy App</strong>
</span>
</a>
<br />
<span style="color: hsl(0, 0%, 60%)">
One app that will do
<i>anything</i>
you want.
</span>
</p>
<p>
<span style="color: hsl(0, 0%, 60%)"
>2776 Black Oak Hollow Road, San Jose, CA</span
>
</p>
</div>
</div>
<div
id="cke5-user-interface-bottom-toolbar-demo-toolbar-container"
></div>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>