// MANIPULATING STYLE
let heading=document.querySelector("h1");
console.dir(heading.style);
heading.style.color="red";
heading.style.backgroundColor="blue";
let links=document.querySelector(".box a");
links.style.color="purple";
let anchor=document.querySelector("a");
anchor.
style.
fontStyle="Italic";
Comments
Post a Comment