html - Refencing a file in a parent directory -
this silly question but, have project set on desktop at: ~/desktop/composer/ inside directory have folders: css , templates inside templates folder have index.html file, , need reference css file in css folder, can figure out how have tried: /../css/style.css , /../../css/style.css, neither of them work.
thanks help.
you need remove leading /, since denotes root of filesystem.  try ../css/style.css.
Comments
Post a Comment