I am working on html/javascript and found these imports prone to confusion:
<link rel="stylesheet" href="../../../../_GUI/css/sample.css">
<link rel="stylesheet" href="../../../../_GUI/css/button.css">
Multiple ../../
in code doesn't really look nice and looks confusing.
Is there any way I can make something like a variable where in:
GUI = ../../../../_GUI ?
I also checked absolute paths but that would not be so reliable since root folder may change.
Help~