Link Search Menu Expand Document

Prioritize One Style Over Another

Final Code

<style>
  body {
    background-color: black;
    font-family: monospace;
    color: green;
  }
  .pink-text {
    color: pink
  }
</style>
<h1 class="pink-text">Hello World!</h1>