Code:
<link rel="stylesheet" type="text/css" href="css/psephystyle.css" />
This will only work if the css folder is a child of the folder where the html file is. When the folders are parallel paths, you need to "back up" one folder in the relative link using "../" :
Code:
<link rel="stylesheet" type="text/css" href="../css/psephystyle.css">
Note also that the trailing " /" before the closing tag is only applicable to xhtml, and is an error in html (which the browser will assume the page is as there is no doctype - something that also should be addressed)
Bookmarks