innerhtml inside div css code example
Example 1: javascript innerhtml
document.getElementById("example").innerHTML = "Paragraph changed!";
Example 2: how to innerhtml is empty
element.innerHTML.length == 0 ? element.appendChild(createdEl) : (element.innerHTML = '', modalNote.appendChild(createdEl));
Example 3: js innerHTML
document.getElementById("Test").innerHTML = "<p style='color:red;'>Test</p>";