HTML
|
JavaScript
Alignment
Basics
Character Codes
Colors
CSS
DIVS
Forms
Frames
Links
Lists and Bullets
Meta Tags
Multimedia
Pictures
Spacing
Tables
Text
Basic Frame
Frame Border
Frame Error
Scroll Bar
Target Page
Frame Border
280
Frame Border
Description
To 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
<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>
Frame Border Color
Description
To 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
<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>
Advertisements