Home

User profile page has an absolute url:

/site/user/profile.html

but is linked as "/user/profile.html" in index page

an anchor only link - breaks the anchors

profile.html#anchor link

- breaks the anchors. Once you use base tag you can't use relative urls anymore. At least not other than relative to site root


url: img/img.png - base tag will translate to /shop/img/img.png


url: ./img/img.png - works the same way as above

go back to index (this is href="./")