HTML file
<!DOCTYPE html>
<html>
<head>
<link rel=“stylesheet” href=“style.css” type=“text/css”>
</head>
<body>
<p>Red</p>
</body>
</html>
CSS File
p {
color: red;
}
The two files are in the same directory and the word 'Red' will not turn red. For some reason my CSS file isn't linking to the html file.