Hi,
I have three frames, top, middle and bottom.
Main page has website link and I want those website content
to be shown inside of middle frame while clicking links inside of top frame.
Based on given code, can anyone point to the right direction?
I don't want to be using iFrame.
'main,html'
<html>
<frameset rows="150, *, 100">
<frame src="top.html" name="top frame" scrolling="no">
<frame src="http://www.centre507.o rg/" name="middle frame" scrolling="yes" >
<frame src="bottom.htm l" name="bottom frame" scrolling="no" nosize>
</frameset>
</html>
'top.html'
<html>
<head>
<title>Top frame</title>
</head>
<body>
<center><h2>T op frame text here.</h2></center>
'<a href ="http://www.centre507.o rg/">home</a>'
'<a href ="http://www.centre507.o rg/forums/">forum</a>'
</body>
</html>
'middle.html
<html>
<body>
<center><h2>mid dle frame here.</h2></centre>
<a href="http://www.centre507.o rg/forums/"></a>
</body>
</html>
'bottom.htm'
ignore it for now
I have three frames, top, middle and bottom.
Main page has website link and I want those website content
to be shown inside of middle frame while clicking links inside of top frame.
Based on given code, can anyone point to the right direction?
I don't want to be using iFrame.
'main,html'
<html>
<frameset rows="150, *, 100">
<frame src="top.html" name="top frame" scrolling="no">
<frame src="http://www.centre507.o rg/" name="middle frame" scrolling="yes" >
<frame src="bottom.htm l" name="bottom frame" scrolling="no" nosize>
</frameset>
</html>
'top.html'
<html>
<head>
<title>Top frame</title>
</head>
<body>
<center><h2>T op frame text here.</h2></center>
'<a href ="http://www.centre507.o rg/">home</a>'
'<a href ="http://www.centre507.o rg/forums/">forum</a>'
</body>
</html>
'middle.html
<html>
<body>
<center><h2>mid dle frame here.</h2></centre>
<a href="http://www.centre507.o rg/forums/"></a>
</body>
</html>
'bottom.htm'
ignore it for now
Comment