How to make a text editor tool in your blogger site
How to make a text editor tool in your blogger site
Steps to Create text editor tool in Blogger
So now if you want to make this tool. So to make it, you will have to follow all its steps carefully. And with the help of these steps, you can easily create this text editor tool in Blogger.Then copy the the script provided below
_______________________________________________________________________________________________________
html>
<head>
<meta charset="utf-8"></meta>
<script src="https://cdn.ckeditor.com/4.16.2/full-all/ckeditor.js"></script>
</head>
<body>
<textarea name="editor1"></textarea>
<script>
CKEDITOR.replace( 'editor1' );
</script>
</body>
</html>
------------------------------------------------______________________________________________
Post a Comment