<svg width="500" height="300"></svg>
const svg=d3.select("svg");
svg.append('text')
.text('Hello World')
.attr('x', 100)
.attr('y', 100)
This Pen doesn't use any external CSS resources.