/* External CSS file */

/* Font family example */
body {
    font-family: Arial, sans-serif;
}

/* Color example */
h2 {
    color: green;
}

/* Demonstrating cascading concept */
p {
    color: purple; /* external CSS (will be overridden by internal & inline) */
}

/* CSS comment example */
/* This file controls the style of the webpage */