-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathindex.html
75 lines (67 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Editor with Inline 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 Inline user interface</h1>
</div>
<div class="editor-wrapper">
<div id="cke5-editor-types-demo-inline">
<header id="inline-header">
<h2>Gone traveling</h2>
<h3>Monthly travel news and inspiration</h3>
</header>
<div id="inline-main">
<h3>Destination of the Month</h3>
<h4>Valletta</h4>
<figure class="image image-style-align-right" style="width: 50%">
<img
alt="Picture of a sunlit facade of a Maltan building."
src="https://ckeditor.com/assets/images/ckdemo/editor-types/malta.jpg"
srcset="
https://ckeditor.com/assets/images/ckdemo/editor-types/malta.jpg,
https://ckeditor.com/assets/images/ckdemo/editor-types/malta_2x.jpg 2x
"
/>
<figcaption>It's siesta time in Valletta.</figcaption>
</figure>
<p>
The capital city of
<a
href="https://en.wikipedia.org/wiki/Malta"
target="_blank"
rel="external"
>Malta</a
>
is the top destination this summer. It’s home to a cutting-edge
contemporary architecture, baroque masterpieces, delicious local
cuisine and at least 8 months of sun. It’s also a top destination
for filmmakers, so you can take a tour through locations familiar to
you from Game of Thrones, Gladiator, Troy and many more.
</p>
</div>
<div class="demo-row">
<div class="demo-row__half">
<div id="inline-footer-first">
<h3>The three greatest things you learn from traveling</h3>
<p><a href="#">Find out more</a></p>
</div>
</div>
<div class="demo-row__half">
<div id="inline-footer-second">
<h3>Walking the capitals of Europe: Warsaw</h3>
<p><a href="#">Find out more</a></p>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>