another "Includes" question

  • Thread starter Thread starter Keith Richards
  • Start date Start date
K

Keith Richards

What does anyone put in their title, description, keywords meta tags in an
include file?

Does it matter? What do search engines see and record from "included" files
meta tags?

Assuming, of course, I wanted to be #1 on yahoo or something :)

Thanks.
 
it doesn't matter because the include (FrontPage include) only scoops up
what's between <body> and </body>.
you can use the include for different purposes in it's unincluded state
because of this, such as adding a print() JavaScript function to the body
tag. that way when it's included in another page, nothing happens, but if
you provide a link to the whole page being included it'll immediately throw
a print dialog. also, if you've got JavaScript above the <body> tag and it
needs to get included in another page along with the include page's content,
just move it to after the <body> tag.

HTH

--
Have you seen ContentSeed (www.contentseed.com)?
--
Chris Leeds
Contact: http://chrisleeds.com/contact

NOTE:
This message was posted from an unmonitored email account.
This is an unfortunate necessity due to high volumes of spam sent to email
addresses in public newsgroups.
Sorry for any inconvenience.
 
Yup that helps a lot. My little coding brain just needed to see that first
sentence of your response. Thanks Chris.
 
Back
Top