Frame Border
Frame Border
DescriptionTo change the width of the borders on your page, insert the line BORDER="#" into the <FRAMESET TYPE="XX,XX"> tag so the final result looks like this.

<FRAMESET TYPE="XX,XX" BORDER="#">

# is replaced with the desired width of the border.
Code
<html><head>

<FRAMESET ROWS="50%,50%" BORDER="20">
<FRAME SRC="http://www.activejump.com" NAME="page1">
<FRAME SRC="http://www.activejump.com" NAME="page2">
</FRAMESET>

</head></html>
Output
n/a
Practice
Frame Border Color
DescriptionTo change the color of the borders on your page, insert the line BORDERCOLOR="#XXXXXX" into the <FRAMESET TYPE="XX,XX"> tag so the final result looks like this.

<FRAMESET TYPE="XX,XX" BORDERCOLOR="#XXXXXX">

XXXXXX is replaced with the color code that you want.
Code
<html><head>

<FRAMESET ROWS="50%,50%" BORDER="20" BORDERCOLOR="#0000FF">
<FRAME SRC="http://www.activejump.com" NAME="page1">
<FRAME SRC="http://www.activejump.com" NAME="page2">
</FRAMESET>

</head></html>
Output
n/a
Practice
Advertisements