Ernesto's Live , Online Code Editor

Compile HTML, CSS and JAVASCRIPT on the web!

<!--predefined html, but editable--> <div class="circle"> click me! </div>
/*predefined CSS, but Editable*/ .circle { display: flex; align-items: center; justify-content: center; width: 200px; height: 200px; border-radius: 50%; background: crimson; margin: auto; margin-top: 50px; transition-duration: 300ms; }
/*predefined Javascript, but Editable*/ var circle = document.querySelector(".circle"); var bool = false; circle.addEventListener('click', function(){ if(!bool) { circle.style.background = "coral"; bool = true; } else { circle.style.background = "crimson"; bool = false; } });

This code editor uses ace for syntax highlighting and other text editing features. Addition or changes to the code is compiled on the fly when the result tab is clicked.