CSS examples

In-line styles

<p style='color: red; font-size: 20px;'>I'm learning to code!</p>

Internal stylesheet:

<head>
  <style>
    p {
      color: red;
      font-size: 20px;
    }
  </style>
</head>

External stylesheet:

<head>
  <link href='./style.css' rel='stylesheet'>
</head>
p {
  color: green;
}