I am struggling to link my stylesheet from a different directory to my HTML files, even though I believe I am using the correct method. Could it be that I am targeting the wrong level?
'-' represents levels
Take a look at my file structure:
myProject (Parent)
-public (1st level)
--stylesheets (2nd level)
---styles.css (3rd level)
-Views (1st level)
--index.ejs (2nd level)
Here's how my HTML looks:
<!doctype html>
<html>
<head>
<title>Node Authentication</title>
<link rel="stylesheet" type="text/css" href="../styles.css">
</head>