I've got frames.html:
and index.html
It splits the page correctly but when I click any link, the page loads in the frame but nothing works. The menu on the left doesn't appear and none of the links work.
What am I doing wrong?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<TITLE>Betfair</TITLE>
</HEAD>
<FRAMESET cols="*,*">
<FRAMESET rows="*, *, *, *, *">
<FRAME src="index.html">
<FRAME src="index.html">
<FRAME src="index.html">
<FRAME src="index.html">
<FRAME src="index.html">
</FRAMESET>
<FRAME src="index.html">
</FRAMESET>
</HTML>
and index.html
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<TITLE>Betfair</TITLE>
</HEAD>
<A HREF="http://sports.betfair.com/">Betfair</A>
</HTML>
It splits the page correctly but when I click any link, the page loads in the frame but nothing works. The menu on the left doesn't appear and none of the links work.
What am I doing wrong?