Describing the file structure within my project:
- app
- html
- index.html
- css
- style.css
- html
The problem arises when trying to link style.css as follows:
<link rel="stylesheet" type="text/css" href="css/style.css"/>
Since it interprets the path as relative, assuming that the file is located in app/html/css/style.css
Even using an absolute path like this:
<link rel="stylesheet" type="text/css" href="/app/css/style.css"/>
It still fails to load the style.css
Your assistance is greatly appreciated.