39 lines
981 B
HTML
39 lines
981 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<title>CKEditor 5 – Classic editor</title>
|
||
<link rel="stylesheet" href="styles.css" />
|
||
<script src="https://cdn.ckeditor.com/ckeditor5/41.1.0/classic/ckeditor.js"></script>
|
||
<script src="online-editor.js"></script>
|
||
</head>
|
||
<body>
|
||
<div id="editor">
|
||
<p>Na mizo nisem položil knjigo.</p>
|
||
</div>
|
||
<bes-popup-el></bes-popup-el>
|
||
<script>
|
||
ClassicEditor.create(document.querySelector('#editor')).catch(error => {
|
||
console.error(error)
|
||
})
|
||
</script>
|
||
</body>
|
||
|
||
<style>
|
||
.bes-online-editor {
|
||
width: 80%;
|
||
height: 300px;
|
||
margin: 0 auto;
|
||
padding: 20px;
|
||
border-radius: 10px;
|
||
background-color: #f5f5f5;
|
||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||
line-height: 1.6;
|
||
white-space: pre-wrap;
|
||
overflow-y: auto;
|
||
font-family: Arial, Helvetica, sans-serif;
|
||
z-index: 2;
|
||
}
|
||
</style>
|
||
</html>
|