<div id="a"></div>
#a {
background: black;
color: red;
padding: 20px;
}
const self = 'Jared';
const something = `hello, my name is ${self}`
document.getElementById('a').innerHTML = something;
This example show you how to customize some style and dom using ##code
.