Hi friends,
this one is giving me headaches:
Our company website needs to run in (currently) 5 languages.
The original design (1 language) was done by a DTP agency and contained of a grand total of 7 single HTML files.
For one language, I could live with it, although a typo in one of the keywords had to be corrected in 7 files...
So when it came to making the site multi-lingual it was pretty obvious that this was not the way to do it.
So I used the design frame of the original index.htm to create one index.ASP. The content is now loaded dynamically into this page dependent on browser language settings (first load) and then on session cookie values.
The content itself is stored in subfolders (de, en, fr, es, it).
The content snippets themselves are in HTML format, no head or body tags, actually just text wrapped in their required HTML formatting tags.
The only page containing the meta tags "keywords, content, description, and title" is the Index.asp.
Here's the head structure of the Index.asp:
When we still had singular HTML files, we were found by googling, but now we aren't - and that's baaaad!
Is this caused by me only using one page with a head?
I have also learned that most search engines don't even look at the keywords anymore.
However, I cannot "stuff" our pages with keywords nonsense. The website shall make the reader curious and answer his first questions, not overload him with information!
For that we have personal talks!
Please give me some advice on how to get our page into Google.
Thanks a lot!
Andy
[navy]"We had to turn off that service to comply with the CDA Bill."[/navy]
- The Bastard Operator From Hell
this one is giving me headaches:
Our company website needs to run in (currently) 5 languages.
The original design (1 language) was done by a DTP agency and contained of a grand total of 7 single HTML files.
For one language, I could live with it, although a typo in one of the keywords had to be corrected in 7 files...
So when it came to making the site multi-lingual it was pretty obvious that this was not the way to do it.
So I used the design frame of the original index.htm to create one index.ASP. The content is now loaded dynamically into this page dependent on browser language settings (first load) and then on session cookie values.
The content itself is stored in subfolders (de, en, fr, es, it).
The content snippets themselves are in HTML format, no head or body tags, actually just text wrapped in their required HTML formatting tags.
The only page containing the meta tags "keywords, content, description, and title" is the Index.asp.
Here's the head structure of the Index.asp:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<%
'Here follows some asp code for setting variable values
%>
<meta http-equiv="content-language" content="<%=language%>">
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="date" content="2008-06-01">
<meta name="Language" content="<%=Sprache%>">
<meta name="author" content="[original author]">
<meta name="publisher" content="[original author company]">
<meta name="copyright" content="[original author company]">
<meta name="asp-programmer" content="[myself]">
<meta name="page-topic" content="<%=Dienst%>">
<meta name="abstract" content="[our company]">
<meta name="title" content="[a set of important keywords]">
<meta name="description" content="[a short summary]">
<meta name="content" content="[subset of most important keywords]">
<meta name="keywords" content="[keywords]">
<title>[site title]</title>
</head>
When we still had singular HTML files, we were found by googling, but now we aren't - and that's baaaad!
Is this caused by me only using one page with a head?
I have also learned that most search engines don't even look at the keywords anymore.
However, I cannot "stuff" our pages with keywords nonsense. The website shall make the reader curious and answer his first questions, not overload him with information!
For that we have personal talks!
Please give me some advice on how to get our page into Google.
Thanks a lot!
Andy
[navy]"We had to turn off that service to comply with the CDA Bill."[/navy]
- The Bastard Operator From Hell