Nest the button element inside the div element.
button
div
The order is <body>, <div>, <button>Sign up</button>, </div>, then </body>.
<body>
<div>
<button>Sign up</button>
</div>
</body>