let word = "kemal"
let test = document.createElement("div");
test.innerText = `lorem la la bla bla "${<strong>word</strong>}"`;
document.querySelector("body").appendChild(test);
I want to make bold font to word variable. But I got an error about it. How can I use HTML elements inside of the template literal?