// Bad:
element.setAttribute("style", "background-color: red;");
// Good:
element.style.backgroundColor = "red";
document.head.insertAdjacentHTML("beforeend", `<style>body{background:red}</style>`)
element.style.backgroundColor = "red"; // set the background color of an element to red