Add another variable for the user's last name.

Great work, if the site only uses the lastName variable, it'll display Jones on the page.

Make sure that the value, "lastName", is on the right side of the = sign. Don't forget that the semicolon comes last.

<html lang="en">
<head>
<style>
body { background-color: white; margin: 0px; } h1 { color: #3b5998; } .header_content { position: relative; margin: 0px; background-color: white; } #banner_picture { width: 100%; margin-bottom: 110px; } #profile_picture { height: 120px; width: 120px; border: 3px; border-style: solid; border-color: white; border-radius: 4px; box-shadow: 0px 0px 4px 1px lightGray; } #profile_picture_container { position: absolute; text-align: center; bottom: 0px; height: 180px; width: 100%; }</style>
</head>
<body>
  <div class="header_content"><img id="banner_picture" src="https://images.getmimo.com/images/873dfbb1-8cbc-4f39-b316-f698ed6bd249" /><div id="profile_picture_container"><img id ="profile_picture" src="https://images.getmimo.com/images/8dbdad96-a78f-4209-91d9-9eec96b8c629"/><h1>Jones</h1>
    </div>
  </div>
</body>
</html>
]]>