I have a stylesheet named style.css which is located inside a folder named css
And a HTML file named template.html in a folder named html
Both the folders are inside a folder named WebSite ( I guess that's the root folder. I'm new to html )
I want to link style.css to template.html using relative path.
My folder structure :
WebSite
|
|--css
|
|--style.css
|
|--html
|
|--template.html
|
|--index.html
I tried using
<link rel="stylesheet" href="../css/style.css" type="text/css" media="all" />
It didn't work
For more clarity I tried using view-source: before the url and clicked on the link but it showed
storage/emulated/0/WebSite/html/css/style.css (No such file or directory)
I am using Acode free app on Android mobile.