Is there a way to link from thispage.html to thatpage.css using a relative path?
public_html
├── folder1
| |__subfolder
| |__thatpage.css
├── folder2
│ |__subfolder
| |__thispage.html
I attempted the following approach:
<link href="../../folder1/subfolder/thatpage.css" rel="stylesheet">