The div element, also known as a division element, is a general purpose container for other elements.
The div element is probably the most commonly used HTML element of all.
Just like any other non-self-closing element, you can open a div element with <div> and close it on another line with </div>.
Nest your "Things cats love" and "Things cats hate" lists all within a single div element.
Hint: Try putting your opening div tag above your "Things cats love" p element and your closing div tag after your closing ol tag so that both of your lists are within one div.
p elements should be nested inside your div element ol element should be nested inside your div element div element should have a closing tag