views:

106

answers:

2

Is there a way of including HTML pages without needing any javascript or server-side code, only HTML.

Basically I can't be sure if the server supports server side includes. I don't want to use javascript and I don't want to use any PHP or other server side functionality.

Is there any way to do this. At the moment I suspect not, but would be very interested if it were possible.

+2  A: 

You can use framesets.

Ash Kim
+8  A: 

Use some frames in your page

HTML frames allow authors to present documents in multiple views, which may be independent windows or subwindows.

<iframe></iframe> is the tag you need to include inline floating frames.

Quick tip with iframes: Be sure you open and close the tag explicitly, if not some browsers will complain

victor hugo