473,509 Members | 3,009 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Include another html file/content

lg
My site consists of many htm pages and each has a banner with my address and some
graphic.

Now each html page is something like this:
<html>
blah blah
<div>
my logo
my address
</div>
here comes to rest of the page
blah blah
</html>

So when I want to change my address or logo graphics I have to go through every
html page and make the changes.

What I would like is to a sperate page for the banner/logo:
banner.htm:
<div>
my logo
my address
</div>

and all the html page would have
<html>
blah blah
INCLUDE BANNER.HTM
here comes to rest of the page
blah blah
</html>

Is this possible with html or css? Or in a compatible way?
Aug 14 '07 #1
10 7748
lg wrote:
>
What I would like is to a sperate page for the banner/logo:
banner.htm:
<div>
my logo
my address
</div>

and all the html page would have
<html>
blah blah
INCLUDE BANNER.HTM
here comes to rest of the page
blah blah
</html>

Is this possible with html or css? Or in a compatible way?
Not with just HTML or CSS, but yes, it's possible. Take a read through:

http://www.htmlhelp.com/faq/html/des...l#include-file
http://allmyfaqs.net/faq.pl?Include_one_file_in_another

--
John
Pondering the value of the UIP: http://blinkynet.net/comp/uip5.html
Aug 14 '07 #2
Is this possible with html or css? Or in a compatible way?

Depending on the nature of your header, you could include it all in one
image, and use:

<IMG SRC=/header.gif ALT="Turn on images to see the header">

Truly horrible. The lack of embedding is (IMO) the most glaring omission
from the original HTML specifications.

--
Steve Swift
http://www.swiftys.org.uk/swifty.html
http://www.ringers.org.uk
Aug 15 '07 #3
Scripsit Steve Swift:
>Is this possible with html or css? Or in a compatible way?

Depending on the nature of your header, you could include it all in
one image, and use:

<IMG SRC=/header.gif ALT="Turn on images to see the header">

Truly horrible.
I agree; the markup is truly horrible. In a civilized country, with enforced
accessibility laws, the author should get sued and punished.

By the way, the "innocent" omission of quotation marks from the SRC
attribute value makes validators very "confused" and makes them throw quite
bizarre error messages at you (Google for "the saga of slashed validators"
if you need to know more).
The lack of embedding is (IMO) the most glaring
omission from the original HTML specifications.
They thought that inclusion isn't really an HTML matter, and there's a point
in such thinking. But later "they" added frames, which allow inclusion, and
we all know where _that_ took "us" (well, just the misled authors).

Inclusion as a hypertext feature, even as a special case of a more general
concept like "transclusion", might be a good idea - if someone ever bothered
to _design_ and define it properly (and browsers implemented it). But to
return to our current universe, inclusion should almost always be handled
using tools outside HTML, such as authoring tools, preprocessors, or perhaps
as server-side includes (SSI and relatives).

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

Aug 15 '07 #4
I agree; the markup is truly horrible. In a civilized country, with
enforced accessibility laws, the author should get sued and punished.
Then I'm lucky that I live in a country that prefers to prosecute the
victims rather than the criminals! :-)

Putting quotes around url's that don't require(*) them serves no purpose
in my universe, and wastes disk space and bandwidth. Each pair of "'s
waste 0.4mS of my life when I'm connected via my 44Kbps modem (as
happened recently when my ADSL fails).

(*)Require: As in has never made the slightest discernible difference to
either myself or any of my users.

--
Steve Swift
http://www.swiftys.org.uk/swifty.html
http://www.ringers.org.uk
Aug 15 '07 #5
Scripsit Steve Swift:
>I agree; the markup is truly horrible. In a civilized country, with
enforced accessibility laws, the author should get sued and punished.

Then I'm lucky that I live in a country that prefers to prosecute the
victims rather than the criminals! :-)
You might be more correct than you think.
Putting quotes around url's that don't require(*) them serves no
purpose in my universe, and wastes disk space and bandwidth.
So you waste everyone's time explaining that you save bandwidth by omitting
some required quotation marks.
Each pair of "'s waste 0.4mS of my life
You're quite a life form, measured in millisieverts.

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

Aug 15 '07 #6
On Wed, 15 Aug 2007, Jukka K. Korpela wrote:
>Each pair of "'s waste 0.4mS of my life

You're quite a life form, measured in millisieverts.
s second
S siemens
Sv sievert
scnr sorry, could not resist
Aug 16 '07 #7
In article
<Pi******************************@s5b004.rrzn.un i-hannover.de>,
Andreas Prilop <Pr********@trashmail.netwrote:
On Wed, 15 Aug 2007, Jukka K. Korpela wrote:
Each pair of "'s waste 0.4mS of my life
You're quite a life form, measured in millisieverts.

s second
S siemens
Sv sievert
scnr sorry, could not resist
I'd have thought 0.4 mS would have provided sufficient resistance...
Maybe you just don't know how to conduct yourself? ;)
Aug 16 '07 #8
Art
On 8/14/07 10:26 AM, lg wrote:
My site consists of many htm pages and each has a banner with my address and some
graphic.

Now each html page is something like this:
<html>
blah blah
<div>
my logo
my address
</div>
here comes to rest of the page
blah blah
</html>

So when I want to change my address or logo graphics I have to go through every
html page and make the changes.

What I would like is to a sperate page for the banner/logo:
banner.htm:
<div>
my logo
my address
</div>

and all the html page would have
<html>
blah blah
INCLUDE BANNER.HTM
here comes to rest of the page
blah blah
</html>

Is this possible with html or css? Or in a compatible way?
lg -
A simple way to accomplish this is by use of PHP (assuming your web
server supports PHP).

Simply place the following in your html page where you want the included
code for your banner/logo to appear:

<?php include("banner.htm"); ?>

and change the suffix of your html main page from .htm to .php.

You can specify multiple PHP includes as desired. For example, I use
this method for my top level navigation bar as well as a second one for
my common footer area.

It's sufficient to just specify the banner.htm file name if all of your
pages and the banner.htm file exist in the same directory. If they
don't, use an absolute URL description to the banner.htm file. Also use
an absolute URL if you've specified a <basetag in your html file as
this value isn't passed to the PHP pre-processor.

HTH...

Art
Aug 23 '07 #9
On 23 Aug, 21:53, Art <m...@nowhere.comwrote:
A simple way to accomplish this is by use of PHP (assuming your web
server supports PHP).
Why use PHP rather than SSI?

Aug 24 '07 #10
Art
On 8/24/07 5:35 AM, Andy Dingley wrote:
On 23 Aug, 21:53, Art <m...@nowhere.comwrote:
>A simple way to accomplish this is by use of PHP (assuming your web
server supports PHP).

Why use PHP rather than SSI?
Just another alternative for the OP depending on what services are
offered by the ISP/web server.

Art
Aug 24 '07 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1641
by: chopper | last post by:
Please excuse the long post but I can't think of shorter way of explaining the issue. Please could someone advise on the following: I'm writing preview functionality for a CMS written in ASP....
22
2875
by: Long | last post by:
Problem: to insert the content of a file in an HTML document at a specific location. One possible way is to add a WebCharm tag like this: <%@charm:text 20 0 my_include_file.txt %> When the...
1
1627
by: RWC | last post by:
Hey Folks! I'm having trouble with an asp page. First off, I'm new to the html / asp world, but not to software development. I'd like to minimize or "normalize" the site, so I'm trying to use...
9
434
by: Howard | last post by:
Hello I need some help with this. I want to assign the content of a static txt/html file to my string a. <script runat="server" language="C#"> private void Page_Load(object sender,...
7
1524
by: Andre | last post by:
I want to condition what include files are included in an web page (.aspx). Something like: if (condition1) { <!-- #Include File='file1.htm' --> } else if (condition2) { <!-- #Include...
6
2093
by: tshad | last post by:
In my User control, I tried to do this: *************************************************************************** <Script runat="server"> Public ClientName As String = "<!-- #include file =...
1
1924
by: Kevin | last post by:
How do I include mb.html if I check file is existed? I'm assuming I do this in codebehind, but how? Basically if the file exists, it should display the page that will include mb.html. ...
1
4618
by: ningjun.wang | last post by:
I need to include to static html files in my asp.net page. The order of include depend on query string. Here is the pseudo code mypage.aspx: <% string mode = Request; if (mode == "A") {...
14
3117
by: Michael | last post by:
Since the include function is called from within a PHP script, why does the included file have to identify itself as a PHP again by enclosing its code in <?php... <?> One would assume that the...
1
2232
by: yemen2007 | last post by:
hi ever one. i have problem in my html file. i have header file , footer file, and index file. i want compile the header , and footer in the index file use include file put it is not work. this my...
0
7136
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7344
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7412
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7069
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7505
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5652
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
3216
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3203
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
441
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.