Issue
I have a header that needs to be rendered but it's not being rendered with CSS. My CSS is in a different file.
Here's the file directory: enter image description here
Here's the code that links the css and html together:
<link rel="stylesheet" href="css/style.css">
Does anyone know what I'm doing wrong?
Solution
Try this:
<link rel="stylesheet" href="html/css/style.css">
Answered By - Michza
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.