JS DOM: Add style to HTML page
Add style to page
// add css style sheet to a html page const xcss = ` body { background-color: silver; } `; const xstyle = document.createElement("style"); xstyle.textContent = xcss; document.head.appendChild(xstyle);
// add css style sheet to a html page const xcss = ` body { background-color: silver; } `; const xstyle = document.createElement("style"); xstyle.textContent = xcss; document.head.appendChild(xstyle);