My favourite bit is the base tag, which is a life saver if you want to use routing or URL rewriting...
<base href="http://www.the-mag.me.uk/" />
... now all of the images will be relative to my base URL, not to my wonderful re-written URL. Quick example below if
Let's say you still don't get it.
www.the-mag.me.uk/Music/Articlesare located at:
www.anypage.com/folder/subfolder/
The following is a routed url, that takes the user to a dynamic code and results for links from this pageat the root of the site (so it goes to http://www.the-mag.me.uk/ with some parameters)
If you had an image with a relative source...
Regular Anchor:
<a href="test.html"images/image.png" then the browser would look for it >Click here: http://www.the-mag.me.uk/Music/Articles/Images/image.png. But using the </a>
Leads to
www.anypage.com/folder/subfolder/test.html
Now if you add base tag, it looks
<base href="http://www.anypage.com/" />
<a href="test.html">Click here</a>
The anchor now leads to:http://www.the-mag.me.uk/Images/image.png.
www.anypage.com/test.html
