I have the following file structure in my project:
- app
- html
- index.html
- css
- style.css
- html
the issue is that linking my style.css by the following wont work:
<link rel="stylesheet" type="text/css" href="css/style.css"/>
because it is taking the path relative, so it thinks that the file is in
app/html/css/style.css
and even if I give it the absolute path:
<link rel="stylesheet" type="text/css" href="/app/css/style.css"/>
it just doesn't load the style.css
Thank you for your answers in advance.