<h1> Title </h1> <p> Hello <em>world</em> <strong>!</strong> </p><div class="links"> <a href="">A <strong>link</strong> </a> </div> <p></p>
const element = document.querySelector("p"); for(let k = 0; k < 15; k++) { element.textContent += "Hello world "+k+" "; }