{
const html = htl.html`<div>
<p>First Paragraph</p>
<p>Second Paragraph</p>
<p>Third Paragraph</p>
</div>`;
d3.select(html).select("p").style("color", "red");
d3.select(html).selectAll("p").data([1, 2, 3]).style("color", "red");
d3.select(html)
.selectAll("p")
.data([1, 2, 3])
.style("color", "blue")
.text((d) => d)
return html;
}