●Create
a text file containing the style declarations.
–File
should have extension “.css” such as: mystyle.css
●Link,
or import that file to the HTML file using special tags
in the header.
<link href=“URL” rel=“stylesheet”
type=“text/css”>
<style>
@import url(“mystyle.css”)
</style>
@import or multiple LINK tags
allow you to use more than one style sheet
in the same document