External CSS Example
HTML
<html>
<head>
<link rel=”stylesheet” type=”text/css” href=”style.css”></head>
<body>
<h3>This is a Heading</h3>
<p>
This is a paragraph.
</p>
</body>
</html>
CSS
p{color: blue;}
h3{color:red;}
p{size:7;}
<html>
<head>
<link rel=”stylesheet” type=”text/css” href=”style.css”></head>
<body>
<h3>This is a Heading</h3>
<p>
This is a paragraph.
</p>
</body>
</html>
p{color: blue;}
h3{color:red;}
p{size:7;}