|
Comments : When writing the source code for a page that is supposed to be submitted later to a search engine, it may be usefull to use the present set of files in order to be able to drive the presentation text of your page that will be delivered to the searcher. By using the metatags this is not always assured as search engine are generally picking up parts of text that they cache and present them as description of your page in the search results. This description can be sometimes odd to see, whilst by using the rdf language that is an extension of XML you may customize the search result presentation
[www.metacrawler.com] ↑...search for this page! |
The following is the code of the file hotscripts.rdf <?xml:namespace ns=”http://www.w3.org/1999/02/22-rdf-syntax-ns#” prefix=”rdf”?> <?xml:namespace ns=”http://purl.org/metadata/dublin_core#” prefix=”dc”?> <rdf:RDF> <rdf:Description about=http://www.ics3w.com/rdf.htm> <dc:Title>rdf to test on : HotScripts Search Engine</dc:Title> <dc:Description> This site is to support the php @ www.ics-php.com </dc:Description> <dc:Publisher>Vittorio Ognissanti</dc:Publisher> <dc:Format>text/html</dc:Format> <dc:Language>it</dc:Language> </rdf:Description> </rdf:RDF>
|