I wish to have multiple definition lists and have a single title for these lists, for example:
//how can I add the title of "Items in fridge"
<dl>
<dt>Food:</dt>
<dd>Eggs</dd>
<dd>Bacon</dd>
</dl>
<dl>
<dt>Drinks:</dt>
<dd>Water</dd>
<dd>Juice</dd>
</dl>
What's the correct way to add an overall <dt>
to various definition lists
`](https://html.spec.whatwg.org/multipage/grouping-content.html#the-dl-element:concept-element-content-model) is `- ` and `
- ` elements, **or** `
` elements, not a mixture of both.
– Alohci May 12 '18 at 22:47