Hi, I would like to construct an HTML link element referencing a CSS file and I would like to use the same reference from multiple documents.
For example, my CSS file is in: {root}/style/style.css
For files in {root}, I use: <link type="text/css" rel="stylesheet" href="style/style.css" />
But for files in {root}/inc, I have to use <link type="text/css" rel="stylesheet" href="../style/style.css" />
Is there a reference to {root} that I can use: something like:
<link type="text/css" rel="stylesheet" href="{root}/style/style.css" />
Sorry for noob question and thanks!