js inline style code example
Example 1: add style javascript
element.setAttribute("style", "background-color: red;");
element.style.backgroundColor = "red";
Example 2: javascript style an element
var myElement = document.querySelector("#myElement");
myElement.style.color = "blue";
myElement.style.backgroundColor = "red";
Example 3: js style
const title = document.querySelector('h1')
console.log(title.style);
console.log(title.style.color);
title.style.margin = '50px';
title.style.color='crimson';
title.style.fontSize = '60px';
Example 4: style through javascript
element.style.backgroundColor = "red";