htl.html`<dl>
${[
["hello", "hel·lo | həˈlō, heˈlō | (also hallo or mainly British hullo) — exclamation used as a greeting or to begin a phone conversation: hello there, Katie!"
],
["world", "world | wərld | noun — 1 (usually the world) the earth, together with all of its countries, peoples, and natural features: he was doing his bit to save the world."
]
].map(([word, def]) => htl.html.fragment`
<dt>${word}</dt>
<dd>${def}</dd>
`)}
</dl>`