Files

20 lines
230 B
Markdown
Raw Normal View History

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