# 4. Thank You Screen

### HTML for Thank You Screen Content

Below you see that we are updating the thank you screen much like your welcome screen, but you will definitely want to put some game results here later instead of saying, "Looks like you did pretty well." The *id* called "game-results" will help us easily insert the game results later.

**Update your&#x20;*****thank you screen*****&#x20;HTML to match the code below.**

{% code title="HTML" %}

```markup
<!-------------- THANK YOU SCREEN --------------->
<div class='screen' id='thankyou-screen'>
  <h1>Thanks for playing our game!</h1>
  <h4 id='game-results'>Looks like you did pretty well.</h4>
  <button class="start-btn">Restart</button>
</div>
```

{% endcode %}

Again, no additional CSS to add.
