html
<form action="" method="POST">
<textarea name="text" id="editor"></textarea>
<br>
<div style="background-color:white">
<button type="submit" class="btn btn-outline-success drdr"
style="float: right; background-color: white;">저장</button></p>
</div>
</form>
js
<script src="https://cdn.ckeditor.com/ckeditor5/34.0.0/classic/ckeditor.js"></script>
<script src="https://cdn.ckeditor.com/ckeditor5/34.0.0/classic/translations/ko.js"></script>
한글 사용 시 js 추가
<script>
ClassicEditor.create(document.querySelector('#editor'), {
language: "ko" // 한글 사용시
});
</script>

'Backend' 카테고리의 다른 글
| [Flask] 서버 설정, html 연결 (0) | 2022.05.30 |
|---|---|
| [Nodejs] 구글 API 로그인, 로그아웃 (0) | 2022.03.25 |
| [JSP] JDK / WebServer - Tomcat / 이클립스 설치 (0) | 2021.08.31 |
| [Anaconda] 가상환경 생성 (0) | 2021.08.05 |
| [Node] 서버 생성 (0) | 2021.08.04 |