It would be more effective to include the code within the question itself, but no worries! From what I can tell, there are two issues in the code:
- You have included the
link
tag inside the style
tag. Anything within the style
tag is interpreted as CSS and not HTML. Therefore, the link
tag is seen as invalid CSS. Solution: Remove the style
tag.
- Your CSS file is named
styles.css
, but you have linked to stylesheet.css
. Solution: Update the link to point to styles.css
.
To correct these errors, your code should look like this:
<head>
<title>Page Title</title>
<link rel="stylesheet" href="C:\users\dilli\CTS 110\Project 1\CSS\styles.css">
</head>