|
<HR> Tags
<HR> tags can be pretty cool. There are all sorts of things that can be done with them. I've got some examples below. Below each visual example is the HTML code needed to display it, with the text color being red.
This is your standard <HR> (Horizontal Rule):
<HR>
Here is a nifty little trick, but it only really works on non-black sites.
<HR noshade>
Here is the same thing, only thinner.
<HR noshade size=1>
Same sort of thing, except without the noshade, and a different size.
<HR size=3>
Same thing, with a bigger size.
<HR size=4>
You can also mess with the width. The width on this will always stay the same distance away from the border, even if you resize the window.
<HR width="50%">
You can have any width= percentages. Here are some more examples.
<HR width="75%">
<HR width="20%">
<HR width="37%">
|