freeCodeCamp Challenge Guide: Use RGB values to Color Elements

Use RGB values to Color Elements


Solutions

Solution 1 (Click to Show/Hide)
<style>
  body {
    background-color: rgb(0, 0, 0);
  }
</style>
5 Likes