The CSS Reference
<head>
<title>
External CSS
</title>
<link rel="stylesheet" href="css/External%20CSS.css">
<)/head>
Syntax Explanation
The <link> tag defines a link between a document and an external resource.rel= Specifies the relationship between the current document and the linked document.
href= The URL of the linked resource/document.
The CSS File
p
{
color:white;
background-color:gray;
}
The HTML File
This is my first paragraph.
This is my second paragraph.
This is my third paragraph.