Master.html - should root links begin with "/"?

In my master.html (which is in my site’s root folder), I have links like –

<link href="/p7tm3/p7TM3-10.css" rel="stylesheet" type="text/css" media="all"/>

Should the link be as above or should the initial “/” be omitted, as –

<link href="p7tm3/p7TM3-10.css" rel="stylesheet" type="text/css" media="all"/>

Thanks,
Don C.

It depends on your final directory structure a little bit. The preceding slash is actually replaced by the server to the base URL. A lack of slash uses the calling file as the base.