forked from ckeditor/ckeditor5-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (64 loc) · 2.9 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>
<!--
Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
-->
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Editor with Balloon Block 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 Balloon Block user interface</h1>
</div>
<div class="editor-wrapper">
<div id="cke5-user-interface-balloon-block-demo">
<h2>Taj Mahal: A breathtaking ode to love</h2>
<figure class="image image-style-side" height="400">
<img
src="https://ckeditor.com/assets/images/ckdemo/editor-types/tajmahal.jpg"
srcset="https://ckeditor.com/assets/images/ckdemo/editor-types/tajmahal.jpg, https://ckeditor.com/assets/images/ckdemo/editor-types/tajmahal_2x.jpg 2x"
alt="Taj Mahal illustration."
/>
<figcaption>Taj Mahal with its poetic white marble tomb</figcaption>
</figure>
<p>
No trip to India is complete without visiting this spectacular monument,
<a href="https://en.wikipedia.org/wiki/New7Wonders_of_the_World"><strong>counted among the Seven Wonders of the World</strong></a>.
</p>
<p>
Tourists frequently admit that Taj Mahal "simply cannot be described with words". And that’s probably true. The more you try the more speechless you become. Words give only a semblance of truth. The real truth about its beauty is revealed when you adore
<strong>different shades of “Taj” depending on the time of the day</strong>
or when you admire the exquisite inlay work in different corners of the façade.
</p>
<h3>Masterpiece of the world’s heritage</h3>
<p>
Taj Mahal is a mausoleum built in Agra between 1631 and 1648 by Emperor Shah Jahan
<strong>in the memory of his beloved wife</strong>, Mumtaz Mahal, whose body lies there. It took 20 000 workers to complete and the excellence of this building is visible in every brick.
</p>
<p>
In 1983, Taj Mahal was appointed
<a href="https://en.wikipedia.org/wiki/World_Heritage_Site">UNESCO World Heritage Site</a>
for being "the jewel of Muslim art in India and one of the universally admired masterpieces of the world's heritage".
</p>
<p>If you like having a methodology for visiting historical places, here are the four elements on which we recommend to focus your attention:</p>
<ul>
<li>The tomb</li>
<li>The decorations</li>
<li>The garden</li>
<li>The outlying buildings</li>
</ul>
<p>
The tomb is what immediately catches your eyesight. The
<strong>white and soft marble</strong>
embroidered with stones leaves you totally enchanted.
</p>
</div>
</div>
<script src="./dist/main.js"></script>
</body>
</html>