I am working on the “build your own cheat sheet” project and I can not get the CSS style sheet to link up. The style sheet is not effecting the preview at all.
my index.html code:
<!DOCTYPE html>
<html>
<head>
<link href="./styles.css" type="text/css" ref="stylesheet">
<title>HTML5 Cheat Sheet</title>
</head>
<body>
<h1>HTML5 Cheat Sheet</h1>
</body>
</html>
my styles.css code:
h1 {
color: red;
}
not a lot to have going wrong, so I do not understand what is wrong.