CDROM-Guide forums  

PDA

View Full Version : how to make this webpage design?


   
thisiscoo
Dec 06, 2002, 09:34 PM
Hi, I want to make a similar website design like the one on this sites: http://www.psx-tech.com/index2.htm

How did he combine two html pages in one?

I have look at his webpage source codes and i found three pages on there:

one is the navi.htm, the second one is the hom.htm, and the third one is the banner.htm

http://www.psx-tech.com/navi.htm
http://www.psx-tech.com/banner.htm
http://www.psx-tech.com/hom.htm

well, how did he combine all three of those html pages into one page?

anyways, I can view all three of those html pages that he have, but i can't view the real source codes for the index2.htm (http://www.psx-tech.com/index2.htm)

how do you view that page, if i can find that page source codes, i guess i will know how to combine the pages together?

can anyone help me out plz...........

- thx!!!

webmaster
Dec 06, 2002, 11:45 PM
They use HTML frames.
http://www.htmlcenter.com/tutorials/tutorials.cfm/68/HTML/

Use the top menu on your browser to view the parent frame page.

~webmaster

thisiscoo
Dec 07, 2002, 12:23 AM
thx, but is there a ways to make my frame design looks exactly like the psxtech.com/index2.htm sites? I want my frames to be borderless...

I want the colons not to be visble like on psxtech.com sites......

anyways, where is the top menu in my browser?

- thx a lot!!! :D!!!

celtic_druid
Dec 07, 2002, 01:35 AM
<frameset framespacing="1" border="0" frameborder="0" rows="99,*">
<frame name="banner" scrolling="no" noresize target="main" src="banner.htm">
<frameset cols="164,*">
<frame name="contents" target="main" src="navi.htm" scrolling="auto" noresize>
<frame name="main" src="hom.htm" scrolling="auto" noresize target="_blank">
</frameset>
<noframes>
<body>

<p>This page uses frames, but your browser doesn't support them.</p>

</body>
</noframes>
</frameset>


You might actually want to actually include something usefull in the noframes tag though.