Bordercolor
Bordercolor
You can change the colors of the borders on your page. If you wish to change all of the borders on your page, you would put this command within the <frameset> tag. Here's an example of how this would work:
- <html>
<head></head>
<frameset cols="33%,33%,*" BORDERCOLOR="purple">
<frame src="cool.html" >
<frame src="cool.html" >
<frame src="cool.html" >
</frameset>
</html>
That code produces this page.
You can also change the colors of the individual frame borders using the bordercolor command. Sometimes this causes glitches, but it does ake your page more colorful. Let's look at the code:
- <html>
<head></head>
<frameset cols="33%,33%,*">
<frame src="cool.html" BORDERCOLOR="red">
<frame src="cool.html" BORDERCOLOR="ffff00">
<frame src="cool.html" BORDERCOLOR="000099">
</frameset>
</html>
That code produces this page.
As you can see, these things aren't that necessary, but they're nice to have. That's about all there is to know about frames. But are they needed? Go to the next lesson.