Use of classes and divisions in CSS

/*Creating a class in css to manipulate css*/ document.body.innerHTML = “<h1>My Heading</h1><div class ='BLOCKone'>This is some text in block 1</div>” /*Applying styling to the class that we created.*/ document.querySelector('.BLOCKone').style.border = ‘solid white 1px’