---
title: Style the HTML Body Element
# Style the HTML Body Element
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
```html
<style>
body {
background-color: black;
}
</style>
```
</details>