When it comes to including CSS/JS files, what are the best practices for defining the file URI? Some people prefer to include files relative to the website root by specifying the full URI:
<link rel="stylesheet" href="/my/path/to/css/main.css">
This method is favored by some because it makes it easier to locate the file in the code. Personally, I tend to use this approach as well since I find it more convenient and have not encountered any issues with it. However, there are also those who opt for relative includes:
<link rel="stylesheet" href="css/main.css">
How do you typically define the file location and what is your reasoning behind it? Is one method considered superior to the other?