Nest the div element inside the body element.
div
body
The order is <!doctype html>, <html>, <body>, <div>, </div>, </body>, then </html>.
<!doctype html>
<html>
<body>
<div>
</div>
</body>
</html>