<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"<html>
<head>
<title>Brians Webpage</title>
</head>
<frameset rows="50,*" border="0">
<frame src="top.htm" name="top" scrolling="no" noresize>
<frameset cols="100,*">
<frame src="sidebar.htm" name="side" scrolling="no" noresize>
<frame src="main.htm" name="main" noresize>
</frameset>
</frameset>
</html>
In the following document for my webpage all of it validates except for one line.
<frameset rows="50,*" border="0">
The WW3.org validator says
Error: there is no attribute "BORDER" for this element (in this HTML version)
How would I keep the same effect of there being no border and still have it be valid HTML 4.01 frameset?
Thanks for taking the time to read my problem, answers would be appreciated greatly!
"<html>
<head>
<title>Brians Webpage</title>
</head>
<frameset rows="50,*" border="0">
<frame src="top.htm" name="top" scrolling="no" noresize>
<frameset cols="100,*">
<frame src="sidebar.htm" name="side" scrolling="no" noresize>
<frame src="main.htm" name="main" noresize>
</frameset>
</frameset>
</html>
In the following document for my webpage all of it validates except for one line.
<frameset rows="50,*" border="0">
The WW3.org validator says
Error: there is no attribute "BORDER" for this element (in this HTML version)
How would I keep the same effect of there being no border and still have it be valid HTML 4.01 frameset?
Thanks for taking the time to read my problem, answers would be appreciated greatly!