I am working in Visual Studio Code, with extension "open in browser" so that I can preview my code in Google Chrome. I have my basic HTML done, and I am trying to link it to an external CSS file. However, the background color I have set in the CSS file is not showing up.
I have looked up solutions and can't see any issue with my code.
HTML
<head>
<title>Site</title>
<link rel = "Website Style" type = "text/css" href = "ResumeStyle.css" >
</head>
CSS
body{
background-color: darkgray;
}
This should change the background to dark gray, but it remains white. I'm not sure if it's an issue with my code or if it has to do with the Chrome extension. Sorry if its a basic question I'm just not seeing the issue.