Definition and Usage
The <link> tag
defines the relationship between the current document and an external resource.
The <link> tag
is most often used to link to external style sheets.
The <link> element
is an empty element, it contains attributes only.
Example
Link to an external style sheet:
<head>
<link rel="stylesheet" href="styles.css">
</head>
Comments
Post a Comment