You need to provide more information in your question, but see what this does. Your CSS link is fine. A few things you should check:
- The path to your CSS file. If necessary for ease of understanding, be explicit
- Make sure the tag is within the tag, and the is within the tag.
-
Make sure your CSS file accurately references the HTML tags you’re trying to style. This may look like:
.navi li a, #navi li a:link{
/* regular style */
}
.navi li a:hover{
/on hover/
}
solved Inclue CSS file [closed]