Click to See Complete Forum and Search --> : html frames
geethparthi
03-19-2003, 01:55 PM
hi all,
can anyone of u help me,
i have a doubt, in html-without using the frames how can we display the links on all the pages? thank you.
DoLordBoy
03-19-2003, 04:56 PM
Frames seem to be the easiest way, but I suppose you could use tables etc. and just cut and paste the code onto all the pages. Frames seem to me like the least tedious.
nkaisare
03-19-2003, 05:06 PM
<body style="margin-left: 200px;">
<!-- Whatever your original page was -->
<div style="position: absolute; top: 0; left: 0; width:200px;">
<!-- Your links Here -->
</div>
</body>
Add the above on all pages.
If your webprovider has Perl, you can use SSI (serverside includes). Alternatives: use PHP/ASP etc.
Using SSI:
<body style="margin-left: 200px;">
<!-- Whatever your original page was -->
<div style="position: absolute; top: 0; left: 0; width:200px;">
<!--#include virtual="path/navigation.html" -->
</div>
</body>
<!--#include virtual="path/navigation.html" --> should be exactly like this, with the full path of the file. navigation.html should NOT containt any head, html, body start or end tags (only the links)