text editor online html code example

Example 1: how to make a text editor in html

function chooseColor(){
      var mycolor = document.getElementById("myColor").value;
      document.execCommand('foreColor', false, mycolor);
    }

    function changeFont(){
      var myFont = document.getElementById("input-font").value;
      document.execCommand('fontName', false, myFont);
    }

    function changeSize(){
      var mysize = document.getElementById("fontSize").value;
      document.execCommand('fontSize', false, mysize);
    }

    function checkDiv(){
      var editorText = document.getElementById("editor1").innerHTML;
      if(editorText === ''){
        document.getElementById("editor1").style.border = '5px solid red';
      }
    }

    function removeBorder(){
      document.getElementById("editor1").style.border = '1px solid transparent';
    }

Example 2: online html editor

<!-- Answer to: "online html editor" -->

<!--
  A common good "online editor" would be:
  https://jsfiddle.net/

  However, for an online editor focusing specifically on html
  this one is pretty good:
  https://html-online.com/editor/
-->

Example 3: online html editor

<!-- Use CodePen -->
https://codepen.io/

Tags:

Css Example