HTML Old School
Misc HTML tags
This page will explain other important HTML tags.
Horizontal rule
<hr align="center" size="5" width="30%" color="blue" noshade>
Example: 0800misctags_hr.html
Base tag
To prepend all URIs in HTML document with some URL use base tag.
<base href="http://msdn.microsoft.com">
Now every relative path, for example <a href="./default.asp"> become <a href="http://msdn.microsoft.com/default.asp"> .