External CSS stylesheets
by danielkwood
HTML
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
CSS
h1{
color: blue;
}
p{
color: green;
}