This code is in HTML code blocks
<div>With <strong>HTML</strong> <i>tags</i></div>
body {
text-align: center;
}
.blue {
color: blue;
}
const p = document.createElement('p');
p.classList.add('blue');
p.innerHTML = 'hello from Typescript!';
document.body.appendChild(p);