External CSS Concept

External CSS uses a separate stylesheet file that can style multiple pages.

Preview

Code

<style>
/* Simulating an external CSS file */
p{
color:#16a34a;
font-size:18px;
}
</style>

<p>This simulates styling from an external CSS file.</p>

More CSS How To Examples (5)