<class home>  <html part II>   <back   next>

html continued

Border size:

You can change the size of the borders or eliminate them by setting them to border=0 in the <FRAMESET> tag.
<FRAMESET border=0 ROWS="*,*">
You should also set the FRAMEborder attribute in the <FRAMESET> tag for older browser support.
<FRAMESET border=0 frameborder=0 ROWS="*,*">


example>>>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
<title>Pony Pony Pony</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<FRAMESET COLS="50,*" bordercolor=0 frameborder=0 >
<FRAME name="left" SRC="links3.html" SCROLLING=yes>

<FRAME name="right" SRC="content.html" SCROLLING=no>

</FRAMESET>
</html>