Link Search Menu Expand Document

Inherit Styles from the Body Element

Summary

  • The body element can be styled using CSS.

Final Code

<style>
  body {
    background-color: black;
    color: green;
    font-family: monospace;
  }

</style>

<h1>Hello World</h1>