<!DOCTYPE html>
<html>
<head>
    <title>CSS Example</title>
    <link rel="stylesheet" href="style.css">
...

p {
    color: red;
}

a {
    color: blue;
}

body {
    font-size: 14px;
    color: navy;
}

h1 {
    color: yellow;
    background-color: blue;
}