This tutorial goes more in-depth into the different ways that you can link CSS rules to your (X)HTML document.
DON'T FORGET TO ADD THE OPENING AND CLOSING TO THE EXAMPLE SNIPS
ALSO, BE SURE THAT YOUR ADDRESS IS CORRECTLY PLACED IN THE FIRST TWO EXAMPLES
Using the "link tag":
link href=" " type="text/css" rel="stylesheet" /
Using the @import:
style type="text.css="
@import url( )
/style
In-line Example =
p style="color:orange; " /p