Finish the keyword for creating the fullName variable.

Super! Although, if the site tried to use fullName now, it wouldn't be able to display anything as it doesn't have a value yet.

Make sure you've spelled var.

<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></h1>
    </div>
  </div>
</body>
</html>
]]>