I know ../ means go up a path, but what does ./ mean exactly?
../
./
I was recently going through a tutorial and it seems to be referring to just
./ is the the folder that the working file is in:
So in /index.htm ./ is the root directory but in /css/style.css ./ is the css folder.
/index.htm
/css/style.css
This is important to remember because if you move CSS from /index.htm to /css/style.css the path will change.