HTML/CSS - 8

HTML/CSS - 8: Basic CSS Styling

Move beyond inline styles! Use a <style> tag in the <head> to style multiple elements at once.

✦ HTML Editor
▶ Live Output

👀 Show Solution
<style>
  h1, h2 {
    color: #00ff9d;
  }
  p {
    margin-bottom: 20px;
  }
</style>