I have all my files stored in a folder named demo.mywebsite.com, which is located in the same directory as the httpdocs folder. The main css folder can be found at this path: httpdocs/all/css/(style.css etc). How can I reference a css file from this subcategory? I have tried the following without success:
<link rel = "stylesheet" href = "httpdocs/all/css/style.css" type = "text / css">
OR**strong text**
<link rel = "stylesheet" href = "../all/css/style.css" type = "text / css">
What should I write to make it work properly? Appreciate any help. Thanks!