chart = {
const width = 600;
const height = 400;
const svg = d3.select(DOM.svg(width, height));
svg.append('text')
.call(addWebFont, 'Pacifico', 'https://fonts.gstatic.com/s/pacifico/v13/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2')
.attr('style', "font-size: 175px; font-family: 'Pacifico';")
.text('Pacifico')
.attr('x', width / 2)
.attr('y', height / 2)
.attr('dominant-baseline', 'middle')
.attr('text-anchor', 'middle');
return svg.node();
}