I'm using sublime text to create a website and my CSS file wont link to my HTML. I've looked this up and everything seems to be coded correctly (also saved in the same folder). So I'm unsure what I'm doing wrong?
HTML:
<head>
<title>shannonkelseyann</title>
<link href="styles/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>My portfolio</h1>
<ul>
<li>Home</li>
<li><a href="page2.html">page 2</a></li>
<li><a href="page3.html">page 3</a></li>
</ul>
<h2>This is my homepage</h2>
<p>And all of my homepage content</p>
</body>
CSS:
body {
font-family: arial;
background: red;
}