Frame not appearing

setia

New member
Joined
Apr 7, 2006
Messages
4
Location
Malaysia
I'm working to make a frame index but when i preview nothing comes out. i have and index.htm but i want to change it to the codes below. please help.

<HTML>
<HEAD>
<TITLE>Syarikat Setia Tanjong Sdn Bhd</TITLE>
</HEAD>
<BODY>

<frameset rows="50%,*" frameborder="no" border="0" framespacing="0">

<frame src="topbar.htm" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="top">

<frame src="main.htm" name="mainFrame" id="mainFrame" title="main">

</frameset>


</BODY>
</HTML>
 
HTML programming is offtopic for these forums; I've moved the post to Off-Topic Discussion.

setla, you'll find that most of us are systems administrators; you're more likely to get a response in a forum dedicated to html programming.

Jeff
 
Take your body tags out.
This should work as long as the pages you are listing are in the same folder as the framed page you are creating.

<HTML>
<HEAD>
<TITLE>Syarikat Setia Tanjong Sdn Bhd</TITLE>
</HEAD>


<frameset rows="50%,*" frameborder="no" border="0" framespacing="0">

<frame src="topbar.htm" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="top">

<frame src="main.htm" name="mainFrame" id="mainFrame" title="main">

</frameset>


</HTML>
 
Back
Top