I'm hosting a github page and want to link index.html to main.css, which is in a folder called "stylesheets" also in the root directory.
my file structure:
index.html
stylesheets
- main.css
right now I have:
<link type="text/css" rel="stylesheet" href="/stylesheets/main.css" />
in the <head>, but this doesn't work?