[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Question about Search Sites



Brian Loss schrieb:
> 
> Hello Pi3Users, and Happy Holidays!,
> Does anyone know how to get a search website to recognize my website for
> free.
> For example: someone at a search site, like yahoo.com, types something
> that is included on my website. Then yahoo.com returns the page (link)
> that it was refered to. Right now this does not work. Any ideas?
> PS - Can anyone please answer my question about .ASP files?
> 
> ______________________________________________________
> Get Your Private, Free Email at http://www.hotmail.com

The following HTML-Meta tags are related to search engines and
web browser control:

<HTML>
<HEAD>
  <!-- search engines -->
  <meta name="description" content="This descriptional text is shown to 
  a user, who's searching your site on a search engine">
  <meta name="author" content="your name">
  <meta name="keywords" content="keyword, keyword, more keywords">
  <meta name="date" content="1998-04-30T08:49:37+00:00">

  <!-- prohibit a spider program to visit a site -->
  <meta name="robots" content="noindex"> <!-- alternative: content="none" -->

  <!-- browser control -->
  
  <!-- PICS label (Platform for Internet Content Selection) -->
  <meta http-equiv="PICS-Label" content='
   (PICS-1.1 "http://www.gcf.org/v2.5"
    labels on "1994.11.05T08:15-0500"
    until "1995.12.31T23:59-0000"
    for "http://w3.org/PICS/Overview.html"
    ratings (suds 0.5 density 0 color/hue 1))'>
 
  <!-- content-type, charsets -->
  <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
  <meta http-equiv="Content-Script-Type" content="text/javascript">
  <meta http-equiv="Content-Style-Type" content="text/css">
  
  <!-- no browser cache -->
  <meta http-equiv="expires" content="0">
  <!-- or any expiration date: content="Sat, 14 Dec 1998 12:00:00 GMT" -->

  <!-- redirection to another site -->
  <meta http-equiv="refresh" content="5;
URL=http://home.t-online.de/home/zimpel/">
  ...
</HEAD>
<BODY>
...
</BODY>
</HTML>

international keywords (country codes are from RFC1766):

  <meta name="keywords" lang="de" 
  content="Ferien, Griechenland, Sonnenschein">
  <meta name="keywords" lang="en-us" 
  content="vacation, Greece, sunshine">
  <meta name="keywords" lang="en" 
  content="holiday, Greece, sunshine">
  <meta name="keywords" lang="fr" 
  content="vacances, Gr&egrave;ce, soleil">

A new system (could be important in the future) of meta-tags for search
engines was published by the "Dublin Core" expert group. This concept is
supported by the W3. (http://purl.org/metadata/dublin_core)
-- 
with regards
Holger

---------------------------------------------------------
Holger 'Zimpel' Zimmermann    Contact me:
---------------------------------------------------------
Wendishain                    tel./fax company: on demand
Germany                       tel./fax private: on demand
---------------------------------------------------------
homepage: http://home.t-online.de/home/zimpel/
web server: surf to it from my homepage (online every
            Sunday 20:00-24:00 GMT, start shifted again)
e-Mail:     zimpel@t-online.de
--------------------------------------------------------